@charset "UTF-8";
/* ==========================================================
Name:
    module.css

Description:
    サイトで共通使用する汎用モジュールのスタイルを記述する
    アルファベット降順(A->Z)に記述する

Contents:
    layout
    component
    utility
========================================================== */
/* ==========================================================
*
*   component
*
========================================================== */
/* ---------------------------------------------
*   js-include
--------------------------------------------- */
@media screen and (min-width: 751px) {
    .js-include {
        height: 111px;
    }
}

@media screen and (min-width: 751px) {
    .js-include--nosub {
        height: 78px;
    }

    .js-include--nosub  .msp-header__sub {
        border-bottom: none;
    }
}

/* ---------------------------------------------
*   msp-header
--------------------------------------------- */
.msp-header {
    font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
    position: fixed;
    z-index: 1000;
    min-width: 1024px;
    width: 100%;
}

@media screen and (max-width: 1024px) {
    .msp-header.msp-header--login {
        max-width: 1024px;
        min-width: auto;
    }
}

@media screen and (max-width: 750px) {
    .msp-header {
        position: fixed;
        min-width: 0;
        width: 100%;
    }
}

.msp-header__flex-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;

    -webkit-box-align: center;
    align-items: center;
}

@media screen and (max-width: 750px) {
    .msp-header__flex-wrap {
        height: 8vw;
        border-bottom: 1px solid #fff;
    }
}

.msp-header__main {
    background-color: #fff;
}

.msp-header__main-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    -ms-flex-align: center;
    margin-right: auto;
    margin-left: auto;
    width: 1024px;

    -webkit-box-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    align-items: center;
}

@media screen and (min-width: 751px) {
    .msp-header__main-container {
        position: relative;
        z-index: 2;
    }
}

@media screen and (max-width: 1024px) {
    .msp-header.msp-header--login .msp-header__main-container {
        max-width: 1024px;
        width: auto;
    }
}

@media screen and (max-width: 750px) {
    .msp-header__main-container {
        width: 100%;
        height: 13.33vw;
        border-bottom: 0.26667vw solid #0068B7;
    }
}

.msp-header__sub {
    overflow: hidden;
    background-color: #0068B4;
    border-top: 1px solid #E5E5E5;
    border-bottom: 2px solid #fff;
}

.msp-header__sub-container {
    margin-right: auto;
    margin-left: auto;
    max-width: 1024px;
}

.msp-header__wrap {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
}

@media screen and (max-width: 750px) {
    .msp-header__wrap {
        width: 100%;
        justify-content: space-between;
    }
}

.msp-header__logo {
    margin-left: 20px;
    padding-right: 28px;
    position: relative;
}

@media screen and (max-width: 750px) {
    .msp-header__logo {
        margin-left: 2.93333vw;
        padding-right: 0;
    }
}

.msp-header__logo:after {
    content: "";
    width: 1px;
    height: 37px;
    background-color: #585858;
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

@media screen and (max-width: 750px) {
    .msp-header__logo:after {
        display: none;
    }
}

.msp-header__logo-img {
    width: 210px;
    height: 34px;
}

@media screen and (max-width: 750px) {
    .msp-header__logo-img {
        width: 40vw;
        height: 6.67vw;
    }
}

.msp-header__sub-logo {
    display: block;
    margin-left: 20px;
    -webkit-transition: opacity 500ms;
    transition: opacity 500ms;
}

@media screen and (min-width: 751px) {
    .msp-header__sub-logo:hover {
        opacity: 0.6;
    }
}

@media screen and (max-width: 750px) {
    .msp-header__sub-logo {
        margin-left: 2.93333vw;
        margin-right: 3.2vw;
    }
}

.msp-header__sub-logo-img {
    width: 170px;
    height: auto;
}

@media screen and (max-width: 750px) {
    .msp-header__sub-logo-img {
        width: 30vw;
    }
}

/* ---------------------------------------------
*   msp-header-login
--------------------------------------------- */
@media screen and (max-width: 750px) {
    .msp-header-login {
        width: 50%;
        height: 100%;
        background-color: #0467B7;
    }
}

.msp-header-login__btn-outside {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    -ms-flex-align: center;
    padding-right: 15px;
    padding-left: 15px;
    height: 78px;
    border-right: 2px solid #fff;
    border-left: 2px solid #fff;

    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
}

@media screen and (min-width: 751px) {
    .msp-header-login__btn-outside:hover {
        border-right: 2px solid #0068B4;
        border-left: 2px solid #0068B4;
    }
}

@media screen and (max-width: 750px) {
    .msp-header-login__btn-outside {
        -webkit-box-sizing: content-box;
        box-sizing: content-box;
        padding-right: 0;
        padding-left: 0;
        width: 100%;
        height: 100%;
        border-right: none;
        border-left: none;
    }
}

.msp-header-login__btn {
    width: 170px;
    height: 40px;
    border: 1px solid #0068B4;
    border-radius: 6px;
    background-color: #fff;
    font-weight: bold;
    cursor: pointer;
    -webkit-transition: background-color .3s;
    transition: background-color .3s;
}

.ipad .msp-header-login__btn {
    width: 200px;
}

.msp-header-login__btn-outside:hover .msp-header-login__btn {
    background-color: #0068B4;
}

.msp-header-login__btn-txt {
    color: #0068B4;
    letter-spacing: .04em;
    font-size: 12px;
    font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
    -webkit-transition: color .3s;
    transition: color .3s;
}

.msp-header-login__btn-outside:hover .msp-header-login__btn-txt {
    color: #fff;
}

.ie11 .msp-header-login__btn-txt {
    line-height: 62px;
}

@media screen and (max-width: 750px) {
    .msp-header-login__btn-sp {
        width: 45.87vw;
        height: 5.33vw;
        margin: 0 auto 0.53vw;
        padding: 0;
        border: 0;
        background-color: #fff;
        border-radius: 1.07vw;
        -webkit-box-shadow: 0.53vw 0.53vw 0px 0.27vw #013E6F;
        box-shadow: 0.53vw 0.53vw 0px 0.27vw #013E6F;
    }
}

.msp-header-login__btn-sp img {
    max-height: 13.33333vw;
}

@media screen and (max-width: 750px) {
    .msp-header-login__btn-sp-txt {
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: flex;
        -ms-align-items: center;
        align-items: center;
        justify-content: center;
        color: #0467B7;
        font-size: 2.67vw;
        font-weight: bold;
        padding-right: 4.27vw;
        position: relative;
    }

    .msp-header-login__btn-sp-txt:after {
        content: "";
        position: absolute;
        top: 50%;
        right: 4.27vw;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        transform: translateY(-50%);
        background: url(/msppoint/navi/_include/common/img/ico_circle_arrow.png) 0 0 no-repeat;
        background-size: 100% auto;
        width: 2.67vw;
        height: 2.67vw;
        -webkit-transition: transform .2s, -webkit-transform .2s;
        -o-transition: transform .2s, -webkit-transform .2s;
        transition: transform .2s, -webkit-transform .2s;
    }

    .LoginIsOpen .msp-header-login__btn-sp-txt:after {
        -webkit-transform: translateY(-50%) rotate(180deg);
        transform: translateY(-50%) rotate(180deg);
    }
}

.msp-header-login__content {
    position: absolute;
    top: 78px;
    right: -2px;
    z-index: 1;
    padding-top: 50px;
    padding-right: 45px;
    padding-bottom: 40px;
    padding-left: 45px;
    width: 512px;
    border-right: 2px solid #0068B4;
    border-bottom: 2px solid #0068B4;
    border-left: 2px solid #0068B4;
    background-color: #fff;
}

@media screen and (min-width: 751px) {
    .msp-header-login__content {
        opacity: 0;
        -webkit-transition: all .5s ease;
        transition: all .5s ease;
        -webkit-transform: scale(1, 0);
        transform: scale(1, 0);
        -webkit-transform-origin: top;
        transform-origin: top;
        pointer-events: none;
    }
}

@media screen and (min-width: 751px) {
    .msp-header-login__btn-outside:hover .msp-header-login__content {
        opacity: 1;
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
        pointer-events: auto;
    }
}

@media screen and (min-width: 1550px) {
    .msp-header-login__content {
        right: auto;
        left: -2px;
    }
}

@media screen and (max-width: 750px) {
    .msp-header-login__content {
        position: fixed;
        top: 21.33vw;
        right: auto;
        left: 0;
        display: none;
        overflow: auto;
        padding-top: 8vw;
        padding-right: 0;
        padding-bottom: 0;
        padding-left: 0;
        max-height: 176vw;
        width: 100%;
        height: calc(100vh - 21.33vw);
        border: none;
        opacity: 1;

        -ms-overflow-style: none;
        scrollbar-width: none;
    }
    .msp-header-login__content::-webkit-scrollbar {
        display: none;
    }
    .android .msp-header-login__content {
        height: calc(100vh - 21.33vw);
    }
}

.msp-header-login__content:after {
    position: absolute;
    top: 0;
    left: 0;
    width: calc(100% - 200px);
    height: 1px;
    border-top: 2px solid #0068B4;
    content: '';
}

@media screen and (min-width: 1550px) {
    .msp-header-login__content:after {
        right: 0;
        left: auto;
    }
}

@media screen and (max-width: 750px) {
    .msp-header-login__content:after {
        bottom: 0;
        width: 0;
        border: none;
    }
}

@media screen and (max-width: 750px) {
    .msp-header-login__content-wrap {
        padding-right: 6.66667vw;
        padding-bottom: 39.99967vw;
        padding-left: 6.66667vw;
        -webkit-box-shadow: inset 0px -9.33333vw 11.46667vw -9.06667vw rgba(0, 0, 0, 0.6);
        box-shadow: inset 0px -9.33333vw 11.46667vw -9.06667vw rgba(0, 0, 0, 0.6);
    }
}

.msp-header-login__container {
    opacity: 0;
    -webkit-transition: opacity .5s;
    transition: opacity .5s;
}

@media screen and (min-width: 751px) {
    .msp-header-login__btn-outside:hover .msp-header-login__container {
        opacity: 1;
    }
}

.msp-header-login__head {
    margin-bottom: 20px;
}

@media screen and (max-width: 750px) {
    .msp-header-login__head {
        margin-bottom: 5.33333vw;
    }
}

.msp-header-login__body {
    margin-bottom: 22px;
}

@media screen and (max-width: 750px) {
    .msp-header-login__body {
        margin-bottom: 10.66667vw;
    }
}

.msp-header-login__note {
    margin-bottom: 20px;
}

@media screen and (max-width: 750px) {
    .msp-header-login__note {
        margin-bottom: 5.33333vw;
    }
}

.msp-header-login__guest {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: justify;

    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-box-pack: justify;
    justify-content: space-between;
}

@media screen and (max-width: 750px) {
    .msp-header-login__guest {
        margin-bottom: 7.2vw;
    }
}

.msp-header-login__member {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: justify;

    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-box-pack: justify;
    justify-content: space-between;
}

.msp-header-login__flex-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;

    -webkit-box-pack: justify;
    justify-content: space-between;
}

.msp-header-login__ttl {
    position: relative;
    padding-left: 54px;
    color: #3EA7E2;
    font-weight: bold;
    font-size: 21px;
    font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
}

@media screen and (max-width: 750px) {
    .msp-header-login__ttl {
        padding-left: 13.86667vw;
        font-size: 5.33333vw;
    }
}

.msp-header-login__ttl:before {
    position: absolute;
    top: 50%;
    left: 0;
    width: 39px;
    height: 50px;
    background: url(/msppoint/navi/_include/common/img/MSP_Point_page-0001.jpeg) 0 0 no-repeat;
    background-size: 100% auto;
    content: '';
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

@media screen and (max-width: 750px) {
    .msp-header-login__ttl:before {
        width: 10.66667vw;
        height: 13.33333vw;
    }
}

.msp-header-login__txt {
    color: #000000;
    font-weight: 500;
    font-size: 14px;
    font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
    line-height: 1.7;
}

@media screen and (min-width: 751px) and (max-width: 1024px) {
    .msp-header-login__txt {
        letter-spacing: -0.05em;
    }
}

@media screen and (max-width: 750px) {
    .msp-header-login__txt {
        letter-spacing: -0.04em;
        font-size: 3.2vw;
        line-height: 1.4;
    }
}

.msp-header-login__txt--red {
    color: #FF0000;
    font-weight: bold;
    font-size: 16px;
    line-height: 1.3;
}

@media screen and (max-width: 750px) {
    .msp-header-login__txt--red {
        letter-spacing: 0.12em;
        font-size: 3.2vw;
    }
}

.msp-header-login__txt--smbold {
    font-weight: bold;
    font-size: 12px;
}

@media screen and (max-width: 750px) {
    .msp-header-login__txt--smbold {
        letter-spacing: .06em;
    }
}

.msp-header-login__txt--mb {
    margin-bottom: 15px;
}

@media screen and (max-width: 750px) {
    .msp-header-login__txt--mb {
        margin-bottom: 4.8vw;
    }
}

.msp-header-login__txt--mb2 {
    margin-bottom: 8px;
}

@media screen and (max-width: 750px) {
    .msp-header-login__txt--mb2 {
        margin-bottom: 1.6vw;
    }
}

.msp-header-login__txt--mt {
    margin-top: 8px;
}

.msp-header-login__txt--indent {
    padding-left: 1em;
    text-indent: -1em;
}

.msp-header-login__btn-link {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 192px;
    height: 35px;
    border: none;
    border-radius: 2px;
    vertical-align: middle;
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
    font-weight: bold;
    font-size: 14px;
    font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
    line-height: 1.42857143;
    cursor: pointer;
    -webkit-transition: opacity 500ms;
    transition: opacity 500ms;
}

.msp-header-login__btn-link:hover {
    opacity: 0.6;
}

@media screen and (max-width: 750px) {
    .msp-header-login__btn-link {
        width: 86.66667vw;
        height: 12.8vw;
        font-size: 4.26667vw;
    }
}

.msp-header-login__btn-link--guest {
    display: block;
    background-image: linear-gradient(-225deg, #70A1F7 0%, #6FCEDA 100%);
    color: #fff;
    letter-spacing: 1px;
    line-height: 35px;
}

@media screen and (min-width: 751px) {
    .windows .msp-header-login__btn-link--guest {
        line-height: 38px;
    }
}

@media screen and (min-width: 751px) {
    .ie11 .msp-header-login__btn-link--guest {
        line-height: 41px;
    }
}

@media screen and (max-width: 750px) {
    .msp-header-login__btn-link--guest {
        line-height: 12.8vw;
    }
}

.msp-header-login__btn-link--member {
    position: relative;
    display: block;
    background-image: linear-gradient(94deg, #5789f4, #6fceda);
    color: #fff;
}

.msp-header-login__btn-link--member:after {
    position: absolute;
    top: 2px;
    left: 2px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: calc(100% - 4px);
    height: calc(100% - 4px);
    border-radius: 1px;
    background: #fff;
    color: #3EA9E4;
    content: "ログイン";
    text-align: center;
    font-size: 16px;
    line-height: 30px;
}

@media screen and (min-width: 751px) {
    .windows .msp-header-login__btn-link--member:after {
        line-height: 33px;
    }
}

@media screen and (min-width: 751px) {
    .ie11 .msp-header-login__btn-link--member:after {
        line-height: 37px;
    }
}

@media screen and (max-width: 750px) {
    .msp-header-login__btn-link--member:after {
        top: 2px;
        left: 2px;
        width: calc(100% - 4px);
        height: calc(100% - 4px);
        border-radius: 2px;
        font-size: 4.26667vw;
        line-height: 11.73333vw;
    }
}

@media screen and (max-width: 750px) {
    .msp-header-login__links {
        margin-bottom: 8vw;
    }
}

.msp-header-login__link-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;

    -webkit-box-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

@media screen and (max-width: 750px) {
    .msp-header-login__link-list {
        display: block;
    }
}

.msp-header-login__link-item {
    border-top: 1px solid #8F8F8F;
    border-bottom: 1px solid #8F8F8F;
}

.msp-header-login__link-item:nth-of-type(-n+2) {
    border-bottom: none;
}

@media screen and (max-width: 750px) {
    .msp-header-login__link-item {
        border-top: 1px solid #8F8F8F;
        border-bottom: none;
    }
    .msp-header-login__link-item:last-of-type {
        border-bottom: 1px solid #8F8F8F;
    }
}

.msp-header-login__link {
    position: relative;
    display: block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding-top: 13px;
    padding-right: 20px;
    padding-bottom: 12px;
    padding-left: 2px;
    width: 192px;
    color: #444444;
    font-weight: bold;
    font-size: 11px;
    -webkit-transition: opacity 500ms;
    transition: opacity 500ms;
}

.msp-header-login__link:hover {
    opacity: 0.6;
}

@media screen and (min-width: 751px) and (max-width: 1024px) {
    .msp-header-login__link {
        padding-right: 0px;
    }
}

@media screen and (max-width: 750px) {
    .msp-header-login__link {
        padding-top: 3.46667vw;
        padding-right: 5.86667vw;
        padding-bottom: 2.66667vw;
        width: 100%;
        letter-spacing: .25em;
        font-size: 2.66667vw;
    }
}

.msp-header-login__link:after {
    position: absolute;
    top: 50%;
    right: 11px;
    width: 6px;
    height: 6px;
    border-top: 1px solid #B6B6B7;
    border-right: 1px solid #B6B6B7;
    content: '';
    -webkit-transform: translateY(-50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg);
}

@media screen and (min-width: 751px) and (max-width: 1024px) {
    .msp-header-login__link:after {
        right: 5px;
    }
}

.msp-header-login__close-btn {
    display: block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    height: 12vw;
    border: 1px solid #ccc;
    text-align: center;
    font-weight: normal;
    font-size: 4.26667vw;
    line-height: 12vw;
}

/* ---------------------------------------------
*   msp-header-pcnav
--------------------------------------------- */
.msp-header-pcnav__btn-outside {
    position: relative;
}

.msp-header-pcnav__btn {
    position: relative;
    display: none;
    -ms-flex-pack: center;
    -ms-flex-align: center;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-right: 0;
    padding-right: 42px;
    padding-left: 70px;
    height: 78px;
    outline: none;
    border: none;
    background-color: #fff;
    cursor: pointer;
    -webkit-transition: background-color .3s;
    transition: background-color .3s;

    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
}

.msp-header-pcnav__btn-outside:hover .msp-header-pcnav__btn {
    background-color: #EAEEF2;
}

.msp-header-pcnav__btn:after {
    position: absolute;
    top: 50%;
    right: 18px;
    width: 16px;
    height: 9px;
    background: url(/msppoint/navi/_include/common/img/ico_btn-arrow.svg) 0 0 no-repeat;
    background-size: 100% auto;
    content: '';
    -webkit-transition: -webkit-transform .2s;
    transition: -webkit-transform .2s;
    transition: transform .2s;
    transition: transform .2s, -webkit-transform .2s;
    -webkit-transition-delay: .15s;
    transition-delay: .15s;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.msp-header-pcnav__btn-outside:hover .msp-header-pcnav__btn:after {
    -webkit-transform: translateY(-50%) rotate(180deg);
    transform: translateY(-50%) rotate(180deg);
}

.msp-header-pcnav__btn:before {
    position: absolute;
    top: 50%;
    left: 17px;
    width: 42px;
    height: 42px;
    content: '';
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.msp-header-pcnav__btn--members:before {
    background: url(/msppoint/navi/_include/common/img/ico_members.png) 0 0 no-repeat;
    background-size: 100% auto;
}

.msp-header-pcnav__btn--members-program:before {
    background: url(/msppoint/navi/_include/common/img/ico_members-program.png) 0 0 no-repeat;
    background-size: 100% auto;
}

.msp-header-pcnav__btn--tamatsuka:before {
    background: url(/msppoint/navi/_include/common/img/ico_tamatsuka.png) 0 0 no-repeat;
    background-size: 100% auto;
}

.msp-header-pcnav__btn--card:before {
    background: url(/msppoint/navi/_include/common/img/ico_card.png) 0 0 no-repeat;
    background-size: 100% auto;
}

.msp-header-pcnav__btn--app:before {
    background: url(/msppoint/navi/_include/common/img/ico_app.png) 0 0 no-repeat;
    background-size: 100% auto;
}

.msp-header-pcnav__btn--line:before {
    background: url(/msppoint/navi/_include/common/img/ico_line.png) 0 0 no-repeat;
    background-size: 100% auto;
}

.msp-header-pcnav__btn--other:before {
    background: url(/msppoint/navi/_include/common/img/ico_other.png) 0 0 no-repeat;
    background-size: 100% auto;
}

.msp-header-pcnav__btn-txt {
    display: inline-block;
    padding-right: 8px;
    padding-left: 8px;
    width: auto;
    color: #585858;
    letter-spacing: .04em;
    font-weight: bold;
    font-size: 16px;
    font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
    line-height: 1.2;
}

.msp-header-pcnav__content {
    position: absolute;
    top: 78px;
    left: 0;
    right: auto;
    z-index: 1;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    box-sizing: border-box;
    border: none;
    background-color: #EAEEF2;
    opacity: 0;
    -webkit-transition: opacity .3s;
    transition: opacity .3s;
    pointer-events: none;
}

.msp-header-pcnav__btn-outside:hover .msp-header-pcnav__content {
    opacity: 1;
    pointer-events: auto;
}

@media screen and (min-width: 1550px) {
    .msp-header-pcnav__content {
        right: auto;
        left: 0;
    }
}

.msp-header-pcnav__container {
    padding-top: 40px;
    padding-right: 36px;
    padding-bottom: 40px;
    padding-left: 36px;
    width: 442px;
    height: 100%;
}

.msp-header-pcnav__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #585858;

    -webkit-box-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.msp-header-pcnav__list:last-of-type {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.msp-header-pcnav__item {
    opacity: 0;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    -webkit-transform: scale(1.4) rotate(0.001deg);
    transform: scale(1.4) rotate(0.001deg);
}

.msp-header-pcnav__list--col3 .msp-header-pcnav__item {
    min-width: 100px;
}

.msp-header-pcnav__list--col4 .msp-header-pcnav__item {
    min-width: 87px;
}

.msp-header-pcnav__btn-outside:hover .msp-header-pcnav__item {
    opacity: 1;
    -webkit-transition: all .4s;
    transition: all .4s;
    -webkit-transform: scale(1) rotate(0.1deg);
    transform: scale(1) rotate(0.1deg);
}

.msp-header-pcnav__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: center;
    text-align: center;
    -webkit-transition: opacity 300ms;
    transition: opacity 300ms;

    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-box-align: center;
    align-items: center;
}

.msp-header-pcnav__link:hover {
    opacity: 0.8;
}

.msp-header-pcnav__ico {
    width: 50px;
    height: 50px;
}

.msp-header-pcnav__ttl {
    display: inline-block;
    margin-top: 10px;
    color: #585858;
    font-weight: bold;
    font-size: 13px;
    font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
    line-height: 1.3;
}

/* ---------------------------------------------
*   msp-header-pcnav-sub
--------------------------------------------- */
.msp-header-pcnav-sub {
    margin-left: 10px;
}

.msp-header-pcnav-sub__list {
    display: none;
}

.msp-header-pcnav-sub__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    -ms-flex-align: center;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding-right: 1px;
    padding-left: 1px;
    max-width: 200px;

    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
}

.msp-header-pcnav-sub__item:last-of-type {
    border-right: none;
}

.msp-header-pcnav-sub__link {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    -ms-flex-align: center;
    overflow: hidden;
    /*height: calc(100% - 2px);*/
    height: auto;
    margin: 1px 0;
    padding: 6px 16px;
    color: #fff;
    font-weight: bold;
    font-size: 12px;
    font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;

    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    white-space: nowrap;
}

.ie11 .msp-header-pcnav-sub__link {
    padding-top: 5px;
}

.msp-header-pcnav-sub__link.is-current:after {
    opacity: .2;
    -webkit-transform: translate(-50%, -50%) scale(1, 1);
    transform: translate(-50%, -50%) scale(1, 1);
}

.msp-header-pcnav-sub__link:after {
    position: absolute;
    top: 50%;
    left: 50%;
    padding-top: 3%;
    width: 100%;
    height: 100%;
    /*border-radius: 50%;*/
    background: white;
    content: "";
    opacity: 0;
    -webkit-transition: opacity .3s ease-out, -webkit-transform .3s ease-out;
    transition: opacity .3s ease-out, -webkit-transform .3s ease-out;
    transition: transform .3s ease-out, opacity .3s ease-out;
    transition: transform .3s ease-out, opacity .3s ease-out, -webkit-transform .3s ease-out;
    -webkit-transform: translate(-50%, -50%) scale(0);
    transform: translate(-50%, -50%) scale(0);
}

.msp-header-pcnav-sub__link:hover:after {
    opacity: .2;
    -webkit-transform: translate(-50%, -50%) scale(1, 1);
    transform: translate(-50%, -50%) scale(1, 1);
}

.contents:not(.top) .msp-header-pcnav-sub__link.is-top {
    display: none;
}

.contents.top .msp-header-pcnav-sub__link.is-low {
    display: none;
}

body:not(.top-page) .msp-header-pcnav-sub__link.is-top {
    display: none;
}

/* ---------------------------------------------
*   msp-header-hmb
--------------------------------------------- */
.msp-header-hmb {
    z-index: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    width: 50%;
    height: 100%;
    background-color: #EAEEF2;

    -webkit-box-pack: center;
    justify-content: center;
    -ms-align-items: center;
    align-items: center;
    position: relative;
}

.msp-header-hmb:after {
    position: absolute;
    top: 50%;
    right: 5.33vw;
    width: 2.13vw;
    height: 1.33vw;
    background: url(/msppoint/navi/_include/common/img/ico_btn-arrow.svg) 0 0 no-repeat;
    background-size: 100% auto;
    content: '';
    -webkit-transition: -webkit-transform .2s;
    transition: -webkit-transform .2s;
    transition: transform .2s;
    transition: transform .2s, -webkit-transform .2s;
    -webkit-transition-delay: .15s;
    transition-delay: .15s;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.msp-header-hmb.js-msp-menu-active:after {
    -webkit-transform: translateY(-50%) rotate(180deg);
    transform: translateY(-50%) rotate(180deg);
}

.msp-header-hmb--full {
    width: 100%;
    justify-content: flex-start;
}

.msp-header-hmb--full:after {
    display: none;
}

.msp-header-hmb__wrap {
    width: 100%;
    height: 100%;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
    justify-content: center;
}

.msp-header-hmb--full .msp-header-hmb__wrap:after {
    position: absolute;
    top: 50%;
    right: 3.2vw;
    width: 2.13vw;
    height: 1.33vw;
    background: url(/msppoint/navi/_include/common/img/ico_btn-arrow.svg) 0 0 no-repeat;
    background-size: 100% auto;
    content: '';
    -webkit-transition: -webkit-transform .2s;
    transition: -webkit-transform .2s;
    transition: transform .2s;
    transition: transform .2s, -webkit-transform .2s;
    -webkit-transition-delay: .15s;
    transition-delay: .15s;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.msp-header-hmb--full.js-msp-menu-active .msp-header-hmb__wrap:after {
    -webkit-transform: translateY(-50%) rotate(180deg);
    transform: translateY(-50%) rotate(180deg);
}

.msp-header-hmb--full .msp-header-hmb__wrap .msp-header-hmb__txt {
    position: relative;
    padding-right: 4.8vw;
}

.msp-header-hmb__lines {
    height: 6.66667vw;
    text-align: center;
}

.msp-header-hmb__line {
    position: relative;
    display: inline-block;
    width: 7.33333vw;
    height: 0.66667vw;
    background-color: #fff;
    vertical-align: middle;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.msp-header-hmb__line:before {
    position: absolute;
    top: -2.66667vw;
    left: 0;
    width: 7.33333vw;
    height: 0.66667vw;
    background-color: #fff;
    content: '';
}

.msp-header-hmb__line:after {
    position: absolute;
    bottom: -2.66667vw;
    left: 0;
    width: 7.33333vw;
    height: 0.66667vw;
    background-color: #fff;
    content: '';
}

.msp-header-hmb.js-msp-hmb-open .msp-header-hmb__line:before {
    width: 7.33333vw;
    height: 0.53333vw;
    background-color: #585858;
    -webkit-transform: rotate(45deg) translate(8px, 7px);
    transform: rotate(45deg) translate(8px, 7px);
}

.msp-header-hmb.js-msp-hmb-open .msp-header-hmb__line:after {
    width: 7.33333vw;
    height: 0.53333vw;
    background-color: #585858;
    -webkit-transform: rotate(-45deg) translate(8px, -8px);
    transform: rotate(-45deg) translate(8px, -8px);
}

@media screen and (max-width: 750px) {
    .msp-header-hmb__txt {
        display: none;
        color: #0467B7;
        vertical-align: middle;
        font-size: 2.67vw;
        font-weight: bold;
        position: relative;
        -ms-align-items: center;
        align-items: center;
        justify-content: center;
        padding-left: 7.47vw;
        padding-right: 7.47vw;
    }

    .msp-header-hmb__txt.is-msp-current {
        display: inline-block;
    }

    .msp-header-hmb__txt:before {
        content: "";
        position: absolute;
        top: 50%;
        left: 0;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        transform: translateY(-50%);
        background-position: 0 0;
        background-repeat: no-repeat;
        background-size: 100% auto;
        width: 5.33vw;
        height: 5.33vw;
    }

    .msp-header-hmb__txt--members:before {
        background-image: url(/msppoint/navi/_include/common/img/ico_members.png);
    }

    .msp-header-hmb__txt--program:before {
        background-image: url(/msppoint/navi/_include/common/img/ico_members-program.png);
    }

    .msp-header-hmb__txt--tamatsuka:before {
        background-image: url(/msppoint/navi/_include/common/img/ico_tamatsuka.png);
    }

    .msp-header-hmb__txt--app:before {
        background-image: url(/msppoint/navi/_include/common/img/ico_app.png);
    }

    .msp-header-hmb__txt--line:before {
        background-image: url(/msppoint/navi/_include/common/img/ico_line.png);
    }
}

/* ---------------------------------------------
*   msp-header-spnav
--------------------------------------------- */
.msp-header-spnav {
    position: fixed;
    top: 21.33vw;
    z-index: -1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: start;
    /* overflow: hidden; */
    overflow: auto;
    width: 100%;
    height: 0;
    background-color: #fff;
    -webkit-transition: height .5s;
    transition: height .5s;
    pointer-events: none;
    /*transform: translateY(-100%);*/

    -webkit-box-pack: start;
    justify-content: flex-start;
}

.msp-header-spnav__lv1-nav {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    min-width: 30.66667vw;
    /* height: 100%; */
    height: 120vh;
    overflow-y: auto;
    background-color: #EAEEF2;
}

.msp-header-spnav__lv2-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    padding-top: 5.33vw;
    width: 100%;
    /* height: 100%;
    overflow: auto; */

    -webkit-box-pack: center;
    justify-content: center;
}

@media screen and (max-width: 750px) and (orientation: landscape) {
    .msp-header-spnav__lv2-nav {
        height: 60vh;
        overflow-y: auto;
    }
}

.msp-header-spnav__lv1-list {
    background-color: #EAEEF2;
}

@media screen and (max-width: 750px) {
    .android .msp-header-spnav__lv1-list {
        padding-bottom: 14.66667vw;
    }
}

@media screen and (orientation: landscape) and (max-width: 750px) {
    .msp-header-spnav__lv1-list {
        padding-bottom: 16vw;
    }
}

.msp-header-spnav__lv2-list {
    display: none;
}

.msp-header-spnav__lv1-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: center;
    -ms-flex-align: center;
    min-height: 22.13vw;
    width: 100%;
    height: calc((100vh - 21.33vw) / 7.3);
    text-align: center;
    -webkit-transition: background-color .4s;
    transition: background-color .4s;

    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
}

@media screen and (max-width: 750px) {
    .iphone .msp-header-spnav__lv1-item {
        height: calc((87vh - 21.33vw) / 7.3);
    }
}

@media screen and (orientation: landscape) and (max-width: 750px) {
    .msp-header-spnav__lv1-item {
        height: 22.66667vw !important;
    }
}

.msp-header-spnav__lv2-item {
    position: relative;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding-right: 2.66667vw;
    padding-left: 2vw;
    width: 52vw;
    border-bottom: 1px solid #B6B6B7;
}

.msp-header-spnav__lv2-item--sub {
    padding-right: 0;
    padding-left: 5.8vw;
    border-bottom: none;
}
.msp-header-spnav__lv2-item--sub2 {
    padding-right: 0;
    padding-left: 7.8vw;
}

.msp-header-spnav__ico {
    width: 12vw;
    height: 12vw;
}

.msp-header-spnav__ttl {
    margin-top: 1.46667vw;
    color: #585858;
    font-weight: bold;
    font-size: 2.66667vw;
    line-height: 1.2;
}

.msp-header-spnav__link {
    display: inline-block;
    padding-top: 4.26667vw;
    padding-right: 2.66667vw;
    padding-bottom: 4vw;
    width: 100%;
    color: #585858;
    letter-spacing: 0em;
    font-weight: bold;
    font-size: 3.73333vw;
    -webkit-transition: opacity 300ms;
    transition: opacity 300ms;
}

.contents:not(.top) .msp-header-spnav__link.is-top {
    display: none;
}

.contents.top .msp-header-spnav__link.is-low {
    display: none;
}

body:not(.top-page) .msp-header-spnav__link.is-top {
    display: none;
}

.msp-header-spnav__link:hover {
    opacity: 0.8;
}

.msp-header-spnav__link:after {
    position: absolute;
    top: 50%;
    right: 3.2vw;
    width: 1.6vw;
    height: 1.6vw;
    border-top: 0.26667vw solid #B6B6B7;
    border-right: 0.26667vw solid #B6B6B7;
    content: '';
    -webkit-transform: translateY(-50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg);
}

.msp-header-spnav__link--small {
    letter-spacing: -.05em;
    font-size: 2.4vw;
}

.msp-header-spnav__link--small2 {
    font-size: 3.5999999999999996vw;
}

.safari .msp-header-spnav__link--small2 {
    font-size: 3.4vw;
}

.firefox .msp-header-spnav__link--small2 {
    font-size: 3.4999999999999996vw;
}

.windows .msp-header-spnav__link--small2 {
    font-size: 3.5vw;
}

.msp-header-spnav__link--sub {
    color: #999;
    padding-left: 2vw;
    border-bottom: 1px dotted #B6B6B7;
}

.msp-header-spnav__link--sub2 {
    color: #999;
}

.msp-header-spnav__close {
    position: absolute;
    top: 4vw;
    right: 5.86667vw;
    width: 8vw;
    height: 8vw;
}

.msp-header-spnav__close:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 11.46667vw;
    height: 2px;
    background-color: #585858;
    content: '';
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
}

.msp-header-spnav__close:after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 11.46667vw;
    height: 2px;
    background-color: #585858;
    content: '';
    -webkit-transform: rotate(-45deg) translate(-0.26667vw, 0.26667vw);
    transform: rotate(-45deg) translate(-0.26667vw, 0.26667vw);
    -webkit-transform-origin: bottom left;
    transform-origin: bottom left;
}

/* ---------------------------------------------
*   msp-header-modal-card
--------------------------------------------- */
.msp-header-modal-card__head {
    margin-bottom: 32px;
}

.msp-header-modal-card__ico {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: start;
    -ms-flex-align: center;
    margin-left: 15px;

    -webkit-box-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    align-items: center;
}

.msp-header-modal-card__ico-img {
    margin-right: 12px;
    width: 40px;
    height: 40px;
}

.msp-header-modal-card__ico-txt {
    color: #444444;
    font-weight: bold;
    font-size: 18px;
}

.ie11 .msp-header-modal-card__ico-txt {
    padding-top: 8px;
}

.msp-header-modal-card__item {
    position: relative;
    padding-top: 14px;
    padding-right: 15px;
    padding-bottom: 15px;
    padding-left: 15px;
    border-bottom: 1px solid #444444;
}

.msp-header-modal-card__item:first-of-type {
    border-top: 1px solid #444444;
}

.msp-header-modal-card__link {
    display: inline-block;
    width: 290px;
    color: #444444;
    letter-spacing: -.05em;
    font-weight: bold;
    font-size: 15px;
    font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", メイリオ, "Lucida Sans Unicode", "Lucida Grande", Verdana, "ＭＳ Ｐゴシック", sans-serif;
    -webkit-transition: opacity 300ms;
    transition: opacity 300ms;
}

.msp-header-modal-card__link:hover {
    opacity: 0.8;
}

.ie11 .msp-header-modal-card__link {
    padding-top: 2px;
}

.msp-header-modal-card__link:after {
    position: absolute;
    top: 50%;
    right: 20px;
    width: 5px;
    height: 5px;
    border-top: 2px solid #585858;
    border-right: 2px solid #585858;
    content: '';
    -webkit-transform: translateY(-50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg);
}

.msp-header-modal-card__link--small {
    letter-spacing: 0em;
    font-size: 11px;
}

/* ---------------------------------------------
*   msp-header-modal
--------------------------------------------- */
.msp-header-modal__overlay {
    position: fixed;
    z-index: 10000;
    display: none;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.7);
    pointer-events: none;
}

.msp-header-modal__content {
    position: absolute;
    top: 20vh;
    left: 50%;
    z-index: 10001;
    display: none;
    padding-top: 70px;
    padding-right: 100px;
    padding-bottom: 65px;
    padding-left: 100px;
    background-color: #fff;
    -webkit-transform: translate(-50%, 0%);
    transform: translate(-50%, 0%);
}

.msp-header-modal__inner {
    margin-bottom: 47px;
}

.msp-header-modal__close {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    -ms-flex-align: center;
    margin-right: auto;
    margin-left: auto;
    width: 135px;
    height: 30px;
    border: 1px solid #585858;
    border-radius: 4px;
    color: #585858;
    font-weight: bold;
    font-size: 12px;
    -webkit-transition: opacity 300ms;
    transition: opacity 300ms;

    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
}

.msp-header-modal__close:hover {
    opacity: 0.8;
}

.ie11 .msp-header-modal__close {
    padding-top: 2px;
}

/* ==========================================================
*
*   javascript style hooks
*
========================================================== */
/* ---------------------------------------------
*   PCメニューカレントクラス
--------------------------------------------- */
.is-msp-current.msp-header-pcnav__btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.is-msp-current.msp-header-pcnav__item .msp-header-pcnav__ttl {
    color: #0068B4;
}

.is-msp-current.msp-header-pcnav-sub__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

/* ---------------------------------------------
*   SPメニュータブ切り替え
--------------------------------------------- */
.is-msp-current.msp-header-spnav__lv1-item {
    background-color: #fff;
}

.is-msp-current.msp-header-spnav__lv2-list {
    display: block;
}

.is-msp-current .msp-header-spnav__ico {
    -webkit-filter: drop-shadow(0px 0px 0.53333vw rgba(160, 160, 160, 0.8));
    filter: drop-shadow(0px 0px 0.53333vw rgba(160, 160, 160, 0.8));
}

/* ---------------------------------------------
*    Loginメニュー開閉
--------------------------------------------- */
@media screen and (max-width: 750px) {
    .msp-header-login.LoginIsOpen .msp-header-login__btn-outside {
        /*border-right: 0.26667vw solid #fff;
        border-left: 0.26667vw solid #0068B4;*/
    }
}

@media screen and (max-width: 750px) {
    .msp-header-login.LoginIsOpen .msp-header-login__container {
        opacity: 1;
    }
}

@media screen and (max-width: 750px) {
    .msp-header-login.LoginIsOpen .msp-header-login__btn-outside {
        border-bottom: 2px solid #fff;
    }
}

@media screen and (max-width: 750px) {
    .body-global-nav-opened {
        position: fixed;
        width: 100%;
    }
}

/* ---------------------------------------------
*   SPメニュー開閉
--------------------------------------------- */
.js-msp-menu-open.msp-header-spnav {
    pointer-events: auto;
    /*-webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);*/
    /* height: calc(100vh - 21.33vw); */
    height: 100vh;
}
@media screen and (max-width: 750px) and (orientation: landscape) {
    .js-msp-menu-open.msp-header-spnav {
        /* height: calc(100vh - 130px); */
        height: 100vh;
    }
}

/* ==========================================================
*
*   utility
*
========================================================== */
/* ---------------------------------------------
*   background-color
--------------------------------------------- */
.bg-white {
    background-color: #fff !important;
}

/* ---------------------------------------------
*   font-wight
--------------------------------------------- */
.fw-normal {
    font-weight: 500 !important;
}

.fw-bold {
    font-weight: 700 !important;
}

/* ---------------------------------------------
*   text-align
--------------------------------------------- */
.txt-al-center {
    text-align: center !important;
}

.txt-al-right {
    text-align: right !important;
}

.txt-al-left {
    text-align: left !important;
}

/* ---------------------------------------------
*   width 320 only
--------------------------------------------- */
@media screen and (min-width: 321px) {
    .sp-320-only {
        display: none !important;
    }
}

/* ---------------------------------------------
*   sp js-include
--------------------------------------------- */
@media screen and (max-width: 750px) {
    .js-include {
        position: fixed;
        top: 0;
        z-index: 1000;
    }
}

/* ---------------------------------------------
*   リキッド専用上書きプロパティ
--------------------------------------------- */
.page-liquid {
    height: 78px;
}

@media screen and (max-width: 750px) {
    .page-liquid {
        height: auto;
    }
}

@media screen and (min-width: 751px) {
    .page-liquid .msp-header {
        min-width: 0;
    }
}

@media screen and (min-width: 751px) {
    .page-liquid .msp-header__sub {
        position: absolute;
        z-index: 1;
        width: 100%;
    }
}

@media screen and (min-width: 751px) {
    .page-liquid .msp-header__main-container {
        max-width: 1024px;
        width: 100%;
    }
}

@media screen and (min-width: 751px) {
    .page-liquid .msp-header-pcnav {
        margin-left: 0;
    }
}

@media screen and (min-width: 751px) and (max-width: 1024px) {
    .msp-header__flex-wrap {
        margin-right: 1.953vw;
    }
}

@media screen and (min-width: 751px) and (max-width: 1024px) {
    .page-liquid .msp-header-pcnav__btn {
        padding-left: 7.422vw;
    }
    .page-liquid .msp-header-pcnav__btn:before {
        left: 1.660vw;
    }
}

@media screen and (min-width: 751px) and (max-width: 1024px) {
    .page-liquid .msp-header-pcnav__btn-txt {
        font-size: 1.5625vw;
        padding-left: 0;
        padding-right: 0;
    }
}

.ie11 .page-liquid .msp-header-pcnav-sub__link {
    top: 0;
}

@media screen and (min-width: 751px) and (max-width: 1024px) {
    .page-liquid .msp-header-pcnav-sub__link {
        font-size: 1.171879vw;
        padding: 0.59vw 1.56vw;
    }
}

@media screen and (min-width: 751px) and (max-width: 1024px) {
    .page-liquid .msp-header__logo {
        margin-left: 1.953vw;
    }
}

@media screen and (min-width: 751px) and (max-width: 1024px) {
    .page-liquid .msp-header__logo-img {
        width: 20.51vw;
        height: 3.32vw;
    }
}

@media screen and (min-width: 751px) and (max-width: 1024px) {
    .page-liquid .msp-header-login__btn {
        padding-right: 0px;
        padding-left: 4px;
        width: 18vw;
    }
}

@media screen and (min-width: 751px) and (max-width: 1024px) {
    .page-liquid .msp-header-login__btn-txt {
        font-size: 1.17vw;
    }
}

.ie11 .page-liquid .msp-header-login__btn-txt {
    line-height: 54px;
}

@media screen and (min-width: 751px) and (max-width: 1024px) {
    .page-liquid .msp-header-login__content:after {
        width: calc(100% - (26.367vw + 30px));
    }
}

@media screen and (min-width: 751px) {
    .ie11 .page-liquid .msp-header-login__btn-link--member:after {
        line-height: 30px;
    }
}

@media screen and (min-width: 751px) {
    .page-liquid .msp-header-modal__content {
        top: 20vh;
        -webkit-transform: translate(-50%, 0%);
        transform: translate(-50%, 0%);
    }
}

@media screen and (min-width: 751px) and (max-width: 1024px) {
    .page-liquid .msp-header__sub-logo {
        width: 19.73vw;
    }
}

/* ---------------------------------------------
*   たまつか専用上書きプロパティ
--------------------------------------------- */
.detail-head {
    margin-top: 33px;
}

@media screen and (max-width: 960px) {
    .detail-head {
        margin-top: 3.13vw;
    }
}

@media screen and (max-width: 750px) {
    .detail-head {
        margin-top: 21.33vw;
    }
}

@media screen and (min-width: 751px) and (max-width: 1024px) {
    .menu-container {
        top: 5.33vw;
    }
}

@media screen and (min-width: 751px) and (max-width: 960px) {
    .inner-list {
        margin-top: 0;
    }
}

@media screen and (min-width: 751px) and (max-width: 960px) {
    .page2-contents {
        margin-top: 0;
    }
}

@media screen and (min-width: 751px) and (max-width: 960px) {
    .page__link {
        margin-top: 0;
    }
}

.page:after {
    z-index: 0;
}

/* ---------------------------------------------
*   アプリ専用上書きプロパティ
--------------------------------------------- */
.page-app .msp-header__sub {
    background-color: #F2F2F2;
}

.page-app .msp-header-pcnav-sub__link {
    color: #000;
}

.page-app .msp-header-pcnav-sub__link:after {
    background: black;
}

.page-app .msp-header-pcnav-sub__link:hover:after {
    opacity: .2;
}

@media screen and (min-width: 751px) {
    .pc-hide {
        display: none !important;
    }
}

@media screen and (max-width: 750px) {
    .sp-hide {
        display: none !important;
    }
}

/* ---------------------------------------------
*   margin-top
--------------------------------------------- */
.mgt-pc--0 {
    margin-top: 0 !important;
}

.mgt-pc--5 {
    margin-top: 5px !important;
}

.mgt-pc--10 {
    margin-top: 10px !important;
}

.mgt-pc--15 {
    margin-top: 15px !important;
}

.mgt-pc--20 {
    margin-top: 20px !important;
}

.mgt-pc--25 {
    margin-top: 25px !important;
}

.mgt-pc--30 {
    margin-top: 30px !important;
}

.mgt-pc--35 {
    margin-top: 35px !important;
}

.mgt-pc--40 {
    margin-top: 40px !important;
}

.mgt-pc--45 {
    margin-top: 45px !important;
}

.mgt-pc--50 {
    margin-top: 50px !important;
}

.mgt-pc--55 {
    margin-top: 55px !important;
}

.mgt-pc--60 {
    margin-top: 60px !important;
}

.mgt-pc--65 {
    margin-top: 65px !important;
}

.mgt-pc--70 {
    margin-top: 70px !important;
}

.mgt-pc--75 {
    margin-top: 75px !important;
}

.mgt-pc--80 {
    margin-top: 80px !important;
}

.mgt-pc--85 {
    margin-top: 85px !important;
}

.mgt-pc--90 {
    margin-top: 90px !important;
}

.mgt-pc--95 {
    margin-top: 95px !important;
}

.mgt-pc--100 {
    margin-top: 100px !important;
}

.mgt-pc--105 {
    margin-top: 105px !important;
}

.mgt-pc--110 {
    margin-top: 110px !important;
}

.mgt-pc--115 {
    margin-top: 115px !important;
}

.mgt-pc--120 {
    margin-top: 120px !important;
}

.mgt-pc--125 {
    margin-top: 125px !important;
}

.mgt-pc--130 {
    margin-top: 130px !important;
}

.mgt-pc--135 {
    margin-top: 135px !important;
}

.mgt-pc--140 {
    margin-top: 140px !important;
}

.mgt-pc--145 {
    margin-top: 145px !important;
}

.mgt-pc--150 {
    margin-top: 150px !important;
}

.mgt-pc--155 {
    margin-top: 155px !important;
}

.mgt-pc--160 {
    margin-top: 160px !important;
}

.mgt-pc--165 {
    margin-top: 165px !important;
}

.mgt-pc--170 {
    margin-top: 170px !important;
}

.mgt-pc--175 {
    margin-top: 175px !important;
}

.mgt-pc--180 {
    margin-top: 180px !important;
}

.mgt-pc--185 {
    margin-top: 185px !important;
}

.mgt-pc--190 {
    margin-top: 190px !important;
}

.mgt-pc--195 {
    margin-top: 195px !important;
}

.mgt-pc--200 {
    margin-top: 200px !important;
}

.mgt-pc--205 {
    margin-top: 205px !important;
}

.mgt-pc--210 {
    margin-top: 210px !important;
}

.mgt-pc--215 {
    margin-top: 215px !important;
}

.mgt-pc--220 {
    margin-top: 220px !important;
}

.mgt-pc--225 {
    margin-top: 225px !important;
}

.mgt-pc--230 {
    margin-top: 230px !important;
}

.mgt-pc--235 {
    margin-top: 235px !important;
}

.mgt-pc--240 {
    margin-top: 240px !important;
}

.mgt-pc--245 {
    margin-top: 245px !important;
}

.mgt-pc--250 {
    margin-top: 250px !important;
}

@media screen and (max-width: 750px) {
    .mgt-sp--0 {
        margin-top: 0 !important;
    }
    .mgt-sp--5 {
        margin-top: 0.66667vw !important;
    }
    .mgt-sp--10 {
        margin-top: 1.33333vw !important;
    }
    .mgt-sp--15 {
        margin-top: 2vw !important;
    }
    .mgt-sp--20 {
        margin-top: 2.66667vw !important;
    }
    .mgt-sp--25 {
        margin-top: 3.33333vw !important;
    }
    .mgt-sp--30 {
        margin-top: 4vw !important;
    }
    .mgt-sp--35 {
        margin-top: 4.66667vw !important;
    }
    .mgt-sp--40 {
        margin-top: 5.33333vw !important;
    }
    .mgt-sp--45 {
        margin-top: 6vw !important;
    }
    .mgt-sp--50 {
        margin-top: 6.66667vw !important;
    }
    .mgt-sp--55 {
        margin-top: 7.33333vw !important;
    }
    .mgt-sp--60 {
        margin-top: 8vw !important;
    }
    .mgt-sp--65 {
        margin-top: 8.66667vw !important;
    }
    .mgt-sp--70 {
        margin-top: 9.33333vw !important;
    }
    .mgt-sp--75 {
        margin-top: 10vw !important;
    }
    .mgt-sp--80 {
        margin-top: 10.66667vw !important;
    }
    .mgt-sp--85 {
        margin-top: 11.33333vw !important;
    }
    .mgt-sp--90 {
        margin-top: 12vw !important;
    }
    .mgt-sp--95 {
        margin-top: 12.66667vw !important;
    }
    .mgt-sp--100 {
        margin-top: 13.33333vw !important;
    }
    .mgt-sp--105 {
        margin-top: 14vw !important;
    }
    .mgt-sp--110 {
        margin-top: 14.66667vw !important;
    }
    .mgt-sp--115 {
        margin-top: 15.33333vw !important;
    }
    .mgt-sp--120 {
        margin-top: 16vw !important;
    }
    .mgt-sp--125 {
        margin-top: 16.66667vw !important;
    }
    .mgt-sp--130 {
        margin-top: 17.33333vw !important;
    }
    .mgt-sp--135 {
        margin-top: 18vw !important;
    }
    .mgt-sp--140 {
        margin-top: 18.66667vw !important;
    }
    .mgt-sp--145 {
        margin-top: 19.33333vw !important;
    }
    .mgt-sp--150 {
        margin-top: 20vw !important;
    }
    .mgt-sp--155 {
        margin-top: 20.66667vw !important;
    }
    .mgt-sp--160 {
        margin-top: 21.33333vw !important;
    }
    .mgt-sp--165 {
        margin-top: 22vw !important;
    }
    .mgt-sp--170 {
        margin-top: 22.66667vw !important;
    }
    .mgt-sp--175 {
        margin-top: 23.33333vw !important;
    }
    .mgt-sp--180 {
        margin-top: 24vw !important;
    }
    .mgt-sp--185 {
        margin-top: 24.66667vw !important;
    }
    .mgt-sp--190 {
        margin-top: 25.33333vw !important;
    }
    .mgt-sp--195 {
        margin-top: 26vw !important;
    }
    .mgt-sp--200 {
        margin-top: 26.66667vw !important;
    }
    .mgt-sp--205 {
        margin-top: 27.33333vw !important;
    }
    .mgt-sp--210 {
        margin-top: 28vw !important;
    }
    .mgt-sp--215 {
        margin-top: 28.66667vw !important;
    }
    .mgt-sp--220 {
        margin-top: 29.33333vw !important;
    }
    .mgt-sp--225 {
        margin-top: 30vw !important;
    }
    .mgt-sp--230 {
        margin-top: 30.66667vw !important;
    }
    .mgt-sp--235 {
        margin-top: 31.33333vw !important;
    }
    .mgt-sp--240 {
        margin-top: 32vw !important;
    }
    .mgt-sp--245 {
        margin-top: 32.66667vw !important;
    }
    .mgt-sp--250 {
        margin-top: 33.33333vw !important;
    }
}

/* ---------------------------------------------
*   margin-bottom
--------------------------------------------- */
.mgb-pc--0 {
    margin-bottom: 0 !important;
}

.mgb-pc--5 {
    margin-bottom: 5px !important;
}

.mgb-pc--10 {
    margin-bottom: 10px !important;
}

.mgb-pc--15 {
    margin-bottom: 15px !important;
}

.mgb-pc--20 {
    margin-bottom: 20px !important;
}

.mgb-pc--25 {
    margin-bottom: 25px !important;
}

.mgb-pc--30 {
    margin-bottom: 30px !important;
}

.mgb-pc--35 {
    margin-bottom: 35px !important;
}

.mgb-pc--40 {
    margin-bottom: 40px !important;
}

.mgb-pc--45 {
    margin-bottom: 45px !important;
}

.mgb-pc--50 {
    margin-bottom: 50px !important;
}

.mgb-pc--55 {
    margin-bottom: 55px !important;
}

.mgb-pc--60 {
    margin-bottom: 60px !important;
}

.mgb-pc--65 {
    margin-bottom: 65px !important;
}

.mgb-pc--70 {
    margin-bottom: 70px !important;
}

.mgb-pc--75 {
    margin-bottom: 75px !important;
}

.mgb-pc--80 {
    margin-bottom: 80px !important;
}

.mgb-pc--85 {
    margin-bottom: 85px !important;
}

.mgb-pc--90 {
    margin-bottom: 90px !important;
}

.mgb-pc--95 {
    margin-bottom: 95px !important;
}

.mgb-pc--100 {
    margin-bottom: 100px !important;
}

.mgb-pc--105 {
    margin-bottom: 105px !important;
}

.mgb-pc--110 {
    margin-bottom: 110px !important;
}

.mgb-pc--115 {
    margin-bottom: 115px !important;
}

.mgb-pc--120 {
    margin-bottom: 120px !important;
}

.mgb-pc--125 {
    margin-bottom: 125px !important;
}

.mgb-pc--130 {
    margin-bottom: 130px !important;
}

.mgb-pc--135 {
    margin-bottom: 135px !important;
}

.mgb-pc--140 {
    margin-bottom: 140px !important;
}

.mgb-pc--145 {
    margin-bottom: 145px !important;
}

.mgb-pc--150 {
    margin-bottom: 150px !important;
}

.mgb-pc--155 {
    margin-bottom: 155px !important;
}

.mgb-pc--160 {
    margin-bottom: 160px !important;
}

.mgb-pc--165 {
    margin-bottom: 165px !important;
}

.mgb-pc--170 {
    margin-bottom: 170px !important;
}

.mgb-pc--175 {
    margin-bottom: 175px !important;
}

.mgb-pc--180 {
    margin-bottom: 180px !important;
}

.mgb-pc--185 {
    margin-bottom: 185px !important;
}

.mgb-pc--190 {
    margin-bottom: 190px !important;
}

.mgb-pc--195 {
    margin-bottom: 195px !important;
}

.mgb-pc--200 {
    margin-bottom: 200px !important;
}

.mgb-pc--205 {
    margin-bottom: 205px !important;
}

.mgb-pc--210 {
    margin-bottom: 210px !important;
}

.mgb-pc--215 {
    margin-bottom: 215px !important;
}

.mgb-pc--220 {
    margin-bottom: 220px !important;
}

.mgb-pc--225 {
    margin-bottom: 225px !important;
}

.mgb-pc--230 {
    margin-bottom: 230px !important;
}

.mgb-pc--235 {
    margin-bottom: 235px !important;
}

.mgb-pc--240 {
    margin-bottom: 240px !important;
}

.mgb-pc--245 {
    margin-bottom: 245px !important;
}

.mgb-pc--250 {
    margin-bottom: 250px !important;
}

@media screen and (max-width: 750px) {
    .mgb-sp--0 {
        margin-bottom: 0 !important;
    }
    .mgb-sp--5 {
        margin-bottom: 0.66667vw !important;
    }
    .mgb-sp--10 {
        margin-bottom: 1.33333vw !important;
    }
    .mgb-sp--15 {
        margin-bottom: 2vw !important;
    }
    .mgb-sp--20 {
        margin-bottom: 2.66667vw !important;
    }
    .mgb-sp--25 {
        margin-bottom: 3.33333vw !important;
    }
    .mgb-sp--30 {
        margin-bottom: 4vw !important;
    }
    .mgb-sp--35 {
        margin-bottom: 4.66667vw !important;
    }
    .mgb-sp--40 {
        margin-bottom: 5.33333vw !important;
    }
    .mgb-sp--45 {
        margin-bottom: 6vw !important;
    }
    .mgb-sp--50 {
        margin-bottom: 6.66667vw !important;
    }
    .mgb-sp--55 {
        margin-bottom: 7.33333vw !important;
    }
    .mgb-sp--60 {
        margin-bottom: 8vw !important;
    }
    .mgb-sp--65 {
        margin-bottom: 8.66667vw !important;
    }
    .mgb-sp--70 {
        margin-bottom: 9.33333vw !important;
    }
    .mgb-sp--75 {
        margin-bottom: 10vw !important;
    }
    .mgb-sp--80 {
        margin-bottom: 10.66667vw !important;
    }
    .mgb-sp--85 {
        margin-bottom: 11.33333vw !important;
    }
    .mgb-sp--90 {
        margin-bottom: 12vw !important;
    }
    .mgb-sp--95 {
        margin-bottom: 12.66667vw !important;
    }
    .mgb-sp--100 {
        margin-bottom: 13.33333vw !important;
    }
    .mgb-sp--105 {
        margin-bottom: 14vw !important;
    }
    .mgb-sp--110 {
        margin-bottom: 14.66667vw !important;
    }
    .mgb-sp--115 {
        margin-bottom: 15.33333vw !important;
    }
    .mgb-sp--120 {
        margin-bottom: 16vw !important;
    }
    .mgb-sp--125 {
        margin-bottom: 16.66667vw !important;
    }
    .mgb-sp--130 {
        margin-bottom: 17.33333vw !important;
    }
    .mgb-sp--135 {
        margin-bottom: 18vw !important;
    }
    .mgb-sp--140 {
        margin-bottom: 18.66667vw !important;
    }
    .mgb-sp--145 {
        margin-bottom: 19.33333vw !important;
    }
    .mgb-sp--150 {
        margin-bottom: 20vw !important;
    }
    .mgb-sp--155 {
        margin-bottom: 20.66667vw !important;
    }
    .mgb-sp--160 {
        margin-bottom: 21.33333vw !important;
    }
    .mgb-sp--165 {
        margin-bottom: 22vw !important;
    }
    .mgb-sp--170 {
        margin-bottom: 22.66667vw !important;
    }
    .mgb-sp--175 {
        margin-bottom: 23.33333vw !important;
    }
    .mgb-sp--180 {
        margin-bottom: 24vw !important;
    }
    .mgb-sp--185 {
        margin-bottom: 24.66667vw !important;
    }
    .mgb-sp--190 {
        margin-bottom: 25.33333vw !important;
    }
    .mgb-sp--195 {
        margin-bottom: 26vw !important;
    }
    .mgb-sp--200 {
        margin-bottom: 26.66667vw !important;
    }
    .mgb-sp--205 {
        margin-bottom: 27.33333vw !important;
    }
    .mgb-sp--210 {
        margin-bottom: 28vw !important;
    }
    .mgb-sp--215 {
        margin-bottom: 28.66667vw !important;
    }
    .mgb-sp--220 {
        margin-bottom: 29.33333vw !important;
    }
    .mgb-sp--225 {
        margin-bottom: 30vw !important;
    }
    .mgb-sp--230 {
        margin-bottom: 30.66667vw !important;
    }
    .mgb-sp--235 {
        margin-bottom: 31.33333vw !important;
    }
    .mgb-sp--240 {
        margin-bottom: 32vw !important;
    }
    .mgb-sp--245 {
        margin-bottom: 32.66667vw !important;
    }
    .mgb-sp--250 {
        margin-bottom: 33.33333vw !important;
    }
}
