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

Description:
    サイトで共通使用する汎用モジュール及びページ固有のスタイルを記述する
    汎用モジュールは、アルファベット降順(A->Z)に記述する
    ページ固有のスタイルは、ディレクトリ名のアルファベット降順(A->Z)、
    ファイル名のアルファベット降順(A->Z)にそれぞれ記述する

Contents:
    module
    page
    utility
========================================================== */
/* ==========================================================
*
*   module
*
========================================================== */
/*  mv
--------------------------------------------- */
.mv {
    position: relative;
}

.mv__img {
    position: absolute;
    top: 35px;
    left: 50%;
    width: 970px;
    height: 100%;
    background: url(../img/mv.png) center 0 no-repeat;
    background-size: 100% auto;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

@media screen and (max-width: 750px) {
    .mv__img {
        top: 4.53333vw;
        width: 91.2vw;
        background: url(../img/mv_sp.png) center 0 no-repeat;
        background-size: 100% auto;
    }
}

.mv__boder--upper {
    margin-bottom: 385px;
    width: 100%;
    height: 315px;
    background: repeating-linear-gradient(-45deg, #fffcd1, #fffcd1 25px, #fff9b0 0, #fff9b0 60px);
}

@media screen and (max-width: 750px) {
    .mv__boder--upper {
        margin-bottom: 41.06667vw;
        height: 63.6vw;
        background: repeating-linear-gradient(-45deg, #fffcd1, #fffcd1 2.66667vw, #fff9b0 0, #fff9b0 5.33333vw);
    }
}

.mv__boder--btm {
    width: 100%;
    height: 225px;
    background: repeating-linear-gradient(-45deg, #fffcd1, #fffcd1 25px, #fff9b0 0, #fff9b0 60px);
}

@media screen and (max-width: 750px) {
    .mv__boder--btm {
        height: 41.33333vw;
        background: repeating-linear-gradient(-45deg, #fffcd1, #fffcd1 2.66667vw, #fff9b0 0, #fff9b0 5.33333vw);
    }
}

.mv__ttl {
    position: absolute;
    top: 50px;
    left: 50%;
    width: 234px;
    opacity: 0;
}

@media screen and (max-width: 750px) {
    .mv__ttl {
        top: 8.66667vw;
        left: 50%;
        width: 42.26667vw;
    }
}

@-webkit-keyframes hvr-icon-bob {
    0% {
        -webkit-transform: translate(-50%, -22px);
        transform: translate(-50%, -22px);
        @media screen and (max-width: 750px) {
            -webkit-transform: translate(-50%, -2.93333vw);
            transform: translate(-50%, -2.93333vw);
        }
    }
    50% {
        -webkit-transform: translate(-50%, -7px);
        transform: translate(-50%, -7px);
        @media screen and (max-width: 750px) {
            -webkit-transform: translate(-50%, -0.93333vw);
            transform: translate(-50%, -0.93333vw);
        }
    }
    100% {
        -webkit-transform: translate(-50%, -22px);
        transform: translate(-50%, -22px);
        @media screen and (max-width: 750px) {
            -webkit-transform: translate(-50%, -2.93333vw);
            transform: translate(-50%, -2.93333vw);
        }
    }
}

@keyframes hvr-icon-bob {
    0% {
        -webkit-transform: translate(-50%, -22px);
        transform: translate(-50%, -22px);
        @media screen and (max-width: 750px) {
            -webkit-transform: translate(-50%, -2.93333vw);
            transform: translate(-50%, -2.93333vw);
        }
    }
    50% {
        -webkit-transform: translate(-50%, -7px);
        transform: translate(-50%, -7px);
        @media screen and (max-width: 750px) {
            -webkit-transform: translate(-50%, -0.93333vw);
            transform: translate(-50%, -0.93333vw);
        }
    }
    100% {
        -webkit-transform: translate(-50%, -22px);
        transform: translate(-50%, -22px);
        @media screen and (max-width: 750px) {
            -webkit-transform: translate(-50%, -2.93333vw);
            transform: translate(-50%, -2.93333vw);
        }
    }
}

@-webkit-keyframes hvr-icon-bob-float {
    0% {
        -webkit-transform: translate(-50%, 50px);
        transform: translate(-50%, 50px);
        @media screen and (max-width: 750px) {
            -webkit-transform: translate(-50%, 6.66667vw);
            transform: translate(-50%, 6.66667vw);
        }
    }
    100% {
        opacity: 1;
        -webkit-transform: translate(-50%, -22px);
        transform: translate(-50%, -22px);
        @media screen and (max-width: 750px) {
            -webkit-transform: translate(-50%, -2.93333vw);
            transform: translate(-50%, -2.93333vw);
        }
    }
}

@keyframes hvr-icon-bob-float {
    0% {
        -webkit-transform: translate(-50%, 50);
        transform: translate(-50%, 50);
        @media screen and (max-width: 750px) {
            -webkit-transform: translate(-50%, 6.66667vw);
            transform: translate(-50%, 6.66667vw);
        }
    }
    100% {
        opacity: 1;
        -webkit-transform: translate(-50%, -22px);
        transform: translate(-50%, -22px);
        @media screen and (max-width: 750px) {
            -webkit-transform: translate(-50%, -2.93333vw);
            transform: translate(-50%, -2.93333vw);
        }
    }
}

.mv-float-item {
    opacity: 0;
    -webkit-transform: translate(-50%, 50px);
    transform: translate(-50%, 50px);
    -webkit-animation-name: hvr-icon-bob-float,hvr-icon-bob;
    animation-name: hvr-icon-bob-float,hvr-icon-bob;
    -webkit-animation-duration: 1s,2.5s;
    animation-duration: 1s,2.5s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-delay: 1s,2s;
    animation-delay: 1s,2s;
    -webkit-animation-iteration-count: 1, infinite;
    animation-iteration-count: 1, infinite;
    -webkit-animation-direction: normal,alternate;
    animation-direction: normal,alternate;

    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

@media screen and (max-width: 750px) {
    .mv-float-item {
        -webkit-transform: translate(-50%, 6.66667vw);
        transform: translate(-50%, 6.66667vw);
    }
}

/*  section-inner
--------------------------------------------- */
.section-inner {
    position: relative;
    left: -6px;
    margin: 0 auto;
    padding: 70px 0 85px 12px;
    width: 986px;
    border: 7px solid #734b44;
    background-color: #fff;
    text-align: center;
}

@media screen and (max-width: 750px) {
    .section-inner {
        left: -0.66667vw;
        padding: 9.33333vw 0 12vw;
        width: 86vw;
        border: 0.8vw solid #734b44;
    }
}

.section-inner:before {
    position: absolute;
    top: 10px;
    left: 9px;
    width: calc(100% + 5px);
    height: calc(100% + 3px);
    border: 2px solid #734b44;
    content: '';
    pointer-events: none;
}

@media screen and (max-width: 750px) {
    .section-inner:before {
        top: 1.73333vw;
        left: 1.46667vw;
        width: 100.8%;
        height: 100.2%;
        border: 0.26667vw solid #734b44;
    }
}

.section-inner--large {
    padding-bottom: 95px;
    width: 998px;
    -webkit-transform: translateX(8px);
    transform: translateX(8px);
}

@media screen and (max-width: 750px) {
    .section-inner--large {
        left: 0.93333vw;
        padding-bottom: 7.33333vw;
        width: 86vw;
        -webkit-transform: translateX(-1.73333vw);
        transform: translateX(-1.73333vw);
    }
}

.section-inner--large:before {
    position: absolute;
    top: 10px;
    left: 9px;
    width: calc(100% + 10px);
    height: calc(100% + 6px);
    border: 2px solid #734b44;
    content: '';
    pointer-events: none;
}

@media screen and (max-width: 750px) {
    .section-inner--large:before {
        top: 1.73333vw;
        left: 1.46667vw;
        width: 100.8%;
        height: 100.2%;
        border: 0.26667vw solid #734b44;
    }
}

/*  section-head
--------------------------------------------- */
.section-head {
    margin: 0 auto;
    width: 614px;
}

@media screen and (max-width: 750px) {
    .section-head {
        width: 72vw;
    }
}

/*  target
--------------------------------------------- */
.target {
    padding: 90px 0;
}

@media screen and (max-width: 750px) {
    .target {
        padding: 10.93333vw 0 12vw;
    }
}

.target__body {
    margin: 0 auto;
    width: 800px;
}

@media screen and (max-width: 750px) {
    .target__body {
        width: 84.26667vw;
        -webkit-transform: translateX(1vw);
        transform: translateX(1vw);
    }
}

.target__txt {
    margin-top: 35px;
    text-align: center;
    letter-spacing: -0.05em;
    font-size: 24px;
    line-height: 1.5;
}

@media screen and (max-width: 750px) {
    .target__txt {
        margin-top: 4vw;
        font-size: 3.49733vw;
    }
}

.target__txt--sub {
    text-align: center;
    letter-spacing: -0.1em;
    font-size: 20px;
    line-height: 1.8;
}

@media screen and (max-width: 750px) {
    .target__txt--sub {
        font-size: 2.91467vw;
    }
}

/*  target-card
--------------------------------------------- */
.target-card {
    margin: 45px auto 0;
    width: 100%;
}

@media screen and (max-width: 750px) {
    .target-card {
        margin-top: 6.66667vw;
        width: 69.33333vw;
    }
}

.target-card__list {
    display: flex;
    width: 100%;

    flex-wrap: wrap;
    justify-content: space-between;
}

.target-card__item {
    display: flex;
    flex-direction: column;
    width: 210px;

    align-items: center;
}

@media screen and (max-width: 750px) {
    .target-card__item {
        width: 27.73333vw;
    }
    .target-card__item:nth-of-type(n+3) {
        margin-top: 4.66667vw;
    }
}

.target-card__item:nth-of-type(n+4) {
    margin-top: 85px;
}

@media screen and (max-width: 750px) {
    .target-card__item:nth-of-type(n+4) {
        margin-top: 4.66667vw;
    }
}

.target-card__item:last-of-type {
    margin-top: 53px;
}

@media screen and (max-width: 750px) {
    .target-card__item:last-of-type {
        margin-top: 4.26667vw;
    }
}

.target-card__item img {
    width: 210px;
}

@media screen and (max-width: 750px) {
    .target-card__item img {
        width: 27.73333vw;
    }
}

.target-card__name {
    margin-top: 10px;
    width: 130%;
    color: #311e06;
    text-align: center;
    letter-spacing: -0.05em;
    font-size: 16px;
    line-height: 1.5;
}

@media screen and (max-width: 750px) {
    .target-card__name {
        margin-top: 0.66667vw;
        font-size: 2.66667vw;
    }
}

.target-card__name--sub {
    display: block;
    letter-spacing: -0.05em;
    font-size: 12px;
    line-height: 1.4;
}

@media screen and (max-width: 750px) {
    .target-card__name--sub {
        font-size: 2.13333vw;
    }
}

/*  target-caution
--------------------------------------------- */
.target-caution {
    margin: 70px auto 0;
    width: 700px;
}

@media screen and (max-width: 750px) {
    .target-caution {
        margin-top: 6.4vw;
        width: 77.33333vw;
    }
}

.target-caution--btm {
    margin-top: 88px;
}

@media screen and (max-width: 750px) {
    .target-caution--btm {
        margin-top: 22.66667vw;
    }
}

.target-caution__box {
    display: block;
    margin: 0 auto;
    padding: 17px 0 20px;
    width: 690px;
    border: 5px solid #ffe900;
    border-radius: 15px;
    background-color: #fffbd2;
}

@media screen and (max-width: 750px) {
    .target-caution__box {
        padding: 3.33333vw 0 5.06667vw;
        width: 75.6vw;
        border: 0.66667vw solid #ffe900;
        border-radius: 2.66667vw;
    }
}

.target-caution__lead {
    display: block;
    margin: 0 auto;
    width: 550px;
}

@media screen and (max-width: 750px) {
    .target-caution__lead {
        margin-left: 1.2vw;
        width: 73.33333vw;
    }
}

@media screen and (max-width: 750px) {
    .target-caution__lead--btm {
        margin-left: 2.26667vw;
    }
}

.target-caution__btn {
    display: block;
    margin: 13px auto 0;
    width: 550px;
    transition: .2s;
}

@media screen and (max-width: 750px) {
    .target-caution__btn {
        margin-top: 1.73333vw;
        width: 66.66667vw;
    }
}

.target-caution__btn:hover {
    opacity: 0.8;
}

.target-caution__link {
    margin: 0 auto;
    width: 700px;
}

@media screen and (max-width: 750px) {
    .target-caution__link {
        margin-top: 3.73333vw;
        width: 77.33333vw;
    }
}

.target-caution__link--btm {
    margin-top: 52px;
}

@media screen and (max-width: 750px) {
    .target-caution__link--btm {
        margin-top: 3.73333vw;
        width: 66.66667vw;
    }
}

.target-caution__link--foot {
    margin-top: 52px;
}

@media screen and (max-width: 750px) {
    .target-caution__link--foot {
        margin-top: 4.66667vw;
    }
}

.target-caution__txt {
    display: block;
    margin: 0 auto 10px;
    width: 220px;
    text-align: center;
}

@media screen and (max-width: 750px) {
    .target-caution__txt {
        margin-bottom: 1.73333vw;
        width: 34.66667vw;
    }
}

.target-caution__txt--btm {
    margin-top: 8px;
    margin-bottom: 0;
    width: 100%;
    color: #311e06;
    letter-spacing: -0.08em;
    font-size: 12px;
    line-height: 1.5;
}

@media screen and (max-width: 750px) {
    .target-caution__txt--btm {
        margin-top: 0.93333vw;
        font-weight: bold;
        font-size: 2.13333vw;
    }
}

.target-caution__txt--foot {
    margin-top: 8px;
    margin-bottom: 0;
    width: 520px;
    color: #311e06;
    text-align: left;
    letter-spacing: -0.08em;
    font-weight: bold;
    font-size: 14px;
    line-height: 1.5;
}

@media screen and (max-width: 750px) {
    .target-caution__txt--foot {
        margin-top: 2.66667vw;
        margin-left: 2.4vw;
        width: 100%;
        text-align: center;
        font-size: 2.13333vw;
    }
}

/*  cash-back
--------------------------------------------- */
.cash-back {
    padding: 78px 0 90px;
    background-color: #fffee5;
}

@media screen and (max-width: 750px) {
    .cash-back {
        padding: 10vw 0 12.66667vw;
    }
}

.cash-back__body {
    margin: 63px auto 0;
    width: 100%;
}

@media screen and (max-width: 750px) {
    .cash-back__body {
        margin-top: 7.33333vw;
    }
}

.cash-back__mid-body {
    margin: 40px auto 0;
    width: 100%;
}

@media screen and (max-width: 750px) {
    .cash-back__mid-body {
        margin-top: 5.33333vw;
    }
}

.cash-back__note {
    display: flex;
    margin: 0 auto;
    width: 615px;

    justify-content: space-between;
    flex-wrap: wrap;
}

@media screen and (max-width: 750px) {
    .cash-back__note {
        width: 82.66667vw;
    }
}

.cash-back__note--txt {
    display: flex;
    width: 520px;
    color: #311e06;
    text-align: left;
    letter-spacing: -0.05em;
    font-weight: bold;
    font-size: 32px;
    line-height: 1.375;

    justify-content: center;
}

@media screen and (max-width: 750px) {
    .cash-back__note--txt {
        flex-direction: column;
        margin-top: 3.6vw;
        width: 64vw;
        letter-spacing: -0.06em;
        font-size: 4vw;

        align-items: center;
    }
}

.cash-back__note--lead {
    width: 520px;
    color: #311e06;
    text-align: left;
    letter-spacing: -0.05em;
    font-weight: bold;
    font-size: 32px;
    line-height: 1.375;
}

@media screen and (max-width: 750px) {
    .cash-back__note--lead {
        flex-direction: column;
        margin-top: 3.6vw;
        width: 64vw;
        letter-spacing: -0.1em;
        font-size: 4vw;

        align-items: center;
    }
}

.cash-back__note--lead__dot {
    position: relative;
}

.cash-back__note--lead__dot:before {
    position: absolute;
    top: -10px;
    left: 50%;
    width: 9px;
    height: 9px;
    border-radius: 4.5px;
    background-color: #e6002d;
    content: '';
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

@media screen and (max-width: 750px) {
    .cash-back__note--lead__dot:before {
        top: -1.33333vw;
        width: 1.73333vw;
        height: 1.73333vw;
        border-radius: 0.86667vw;
    }
}

.cash-back__note--img {
    width: 82px;
    height: 88px;
}

@media screen and (max-width: 750px) {
    .cash-back__note--img {
        padding-top: 1.33333vw;
        padding-left: 3.33333vw;
        width: 12.66667vw;
        height: 13.2vw;
    }
}

.cash-back__note--list {
    margin-top: 27px;
    width: 100%;
    text-align: left;
    font-size: 12px;
    line-height: 1.5;
}

@media screen and (max-width: 750px) {
    .cash-back__note--list {
        margin-top: 4vw;
        margin-left: 4vw;
        font-size: 2.66667vw;
    }
}

.cash-back__note--item {
    padding-left: 1em;
    text-indent: -1em;
}

.cash-back__under-arrow {
    margin: 40px auto 0;
    width: 0;
    height: 0;
    border-width: 53px 51px 0 51px;
    border-style: solid;
    border-color: #ffcb88 transparent transparent transparent;
}

@media screen and (max-width: 750px) {
    .cash-back__under-arrow {
        margin-top: 6vw;
        border-width: 8.26667vw 7.86667vw 0 7.86667vw;
    }
}

/*  mid-mv
--------------------------------------------- */
.mid-mv {
    position: relative;
    margin-top: 60px;
}

@media screen and (max-width: 750px) {
    .mid-mv {
        margin-top: 6.66667vw;
        padding-left: 1.86667vw;
    }
}

.mid-mv__upper {
    margin-bottom: 270px;
    width: 100%;
    height: 110px;
    background: repeating-linear-gradient(-45deg, #fffcd1, #fffcd1 25px, #fff9b0 0, #fff9b0 60px);
}

@media screen and (max-width: 750px) {
    .mid-mv__upper {
        margin-bottom: 29.33333vw;
        height: 13.06667vw;
        background: repeating-linear-gradient(-45deg, #fffcd1, #fffcd1 2.66667vw, #fff9b0 0, #fff9b0 5.33333vw);
    }
}

.mid-mv__img {
    position: absolute;
    top: 39px;
    left: 50%;
    width: 836px;
    height: 415px;
    background: url(../img/mv_middle.png) 0 0 no-repeat;
    background-size: 100% auto;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

@media screen and (max-width: 750px) {
    .mid-mv__img {
        top: 2vw;
        width: 81.6vw;
        height: 59.46667vw;
        background: url(../img/mv_middle_sp.png) 0 0 no-repeat;
        background-size: 100% auto;
    }
}

.mid-mv__btm {
    width: 100%;
    height: 100px;
    background: repeating-linear-gradient(-45deg, #fffcd1, #fffcd1 25px, #fff9b0 0, #fff9b0 60px);
}

@media screen and (max-width: 750px) {
    .mid-mv__btm {
        height: 22.53333vw;
        background: repeating-linear-gradient(-45deg, #fffcd1, #fffcd1 2.66667vw, #fff9b0 0, #fff9b0 5.33333vw);
    }
}

/*  mid-box
--------------------------------------------- */
.mid-box {
    display: flex;
    flex-direction: column;
    text-align: center;

    align-items: center;
}

.mid-box__upper {
    position: relative;
    z-index: 0;
    color: #f18900;
    font-weight: bold;
    font-size: 36px;
}

@media screen and (max-width: 750px) {
    .mid-box__upper {
        font-size: 4.8vw;
    }
}

.mid-box__upper:before {
    position: absolute;
    bottom: 0;
    left: 50%;
    z-index: -1;
    width: 120px;
    height: 10px;
    background-color: #fff100;
    content: "";
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

@media screen and (max-width: 750px) {
    .mid-box__upper:before {
        width: 16vw;
        height: 1.33333vw;
    }
}

.mid-box__btm {
    position: relative;
    margin-top: 35px;
    font-weight: bold;
    font-size: 24px;
    line-height: 1.4;
}

@media screen and (max-width: 750px) {
    .mid-box__btm {
        margin-top: 3.2vw;
        letter-spacing: -0.06em;
        font-size: 4.26667vw;
        line-height: 1.5;
    }
}

.mid-box__btm:before {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 62px;
    height: 92px;
    background: url(../img/img_dotline-left.png) 0 0 no-repeat;
    background-size: 100% auto;
    content: '';
    -webkit-transform: translate(-120%, 25%);
    transform: translate(-120%, 25%);
}

@media screen and (max-width: 750px) {
    .mid-box__btm:before {
        width: 7.86667vw;
        height: 11.2vw;
        background: url(../img/img_dotline-left_sp.png) 0 0 no-repeat;
        background-size: 100% auto;
        -webkit-transform: translate(-108%, 0);
        transform: translate(-108%, 0);
    }
}

.mid-box__btm:after {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 62px;
    height: 92px;
    background: url(../img/img_dotline-right.png) 0 0 no-repeat;
    background-size: 100% auto;
    content: '';
    -webkit-transform: translate(100%, 25%);
    transform: translate(100%, 25%);
}

@media screen and (max-width: 750px) {
    .mid-box__btm:after {
        width: 7.86667vw;
        height: 11.2vw;
        background: url(../img/img_dotline-right_sp.png) 0 0 no-repeat;
        background-size: 100% auto;
        -webkit-transform: translate(90%, 0);
        transform: translate(90%, 0);
    }
}

/*  icon-container
--------------------------------------------- */
.icon-container {
    display: flex;
    margin: 46px auto 0;
    width: 705px;
    text-align: center;
    -webkit-transform: translateX(-13px);
    transform: translateX(-13px);

    justify-content: space-between;
}

@media screen and (max-width: 750px) {
    .icon-container {
        margin-top: 3.33333vw;
        width: 76vw;
        -webkit-transform: translateX(0.53333vw);
        transform: translateX(0.53333vw);
    }
}

/*  icon-box
--------------------------------------------- */
.icon-box {
    position: relative;
    width: 332px;
    border: 3px solid #734b44;
}

@media screen and (max-width: 750px) {
    .icon-box {
        padding-bottom: 2.66667vw;
        width: 35.6vw;
        border: 0.4vw solid #734b44;
    }
}

.icon-box:before {
    position: absolute;
    top: 5px;
    left: 5px;
    width: calc(100% + 2px);
    height: calc(100% + 1px);
    border: 2px solid #734b44;
    content: '';
    pointer-events: none;
}

@media screen and (max-width: 750px) {
    .icon-box:before {
        top: 0.53333vw;
        left: 0.4vw;
        width: calc(100% + pxtovw(3, 'sp'));
        height: calc(100% + pxtovw(3, 'sp'));
        border: 0.26667vw solid #734b44;
    }
}

.icon-box__img {
    display: block;
    margin: 0 auto;
}

.icon-box__img.icon-card {
    padding: 67px 0 30px;
    width: 115px;
    height: 80px;
}

@media screen and (max-width: 750px) {
    .icon-box__img.icon-card {
        padding-top: 6.26667vw;
        padding-bottom: 2.26667vw;
        width: 15.33333vw;
        height: 10.8vw;
    }
}

.icon-box__img.icon-coin {
    padding: 55px 0 10px;
    width: 225px;
    height: 115px;
}

@media screen and (max-width: 750px) {
    .icon-box__img.icon-coin {
        padding-top: 4.8vw;
        padding-bottom: 1.46667vw;
        width: 27.2vw;
        height: 13.33333vw;
    }
}

.icon-box__txt {
    display: block;
    padding-bottom: 35px;
    letter-spacing: -0.05em;
    font-weight: bold;
    font-size: 28px;
    line-height: 1.28;
}

@media screen and (max-width: 750px) {
    .icon-box__txt {
        padding-bottom: 0.53333vw;
        font-size: 3.46667vw;
    }
}

.icon-box__txt--orange {
    color: #f18900;
}

@media screen and (max-width: 750px) {
    .icon-box__txt--orange {
        padding-bottom: 2.66667vw;
    }
}

/*  large-txt
--------------------------------------------- */
.large-txt {
    position: relative;
    z-index: 0;
    display: inline-block;
    margin-top: 25px;
    font-weight: bold;
    font-size: 56px;
    line-height: 1.28;
}

@media screen and (max-width: 750px) {
    .large-txt {
        margin-top: 5.33333vw;
        font-size: 6.4vw;
    }
}

.large-txt:before {
    position: absolute;
    bottom: -15px;
    left: 50%;
    z-index: -1;
    width: 105%;
    height: 20px;
    background-color: #fff100;
    content: "";
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

@media screen and (max-width: 750px) {
    .large-txt:before {
        bottom: -2vw;
        width: 100%;
        height: 2.66667vw;
    }
}

/*  app-coupon
--------------------------------------------- */
.app-coupon {
    margin: 0 auto;
    padding: 60px 0 80px;
    width: 1018px;
    text-align: center;
}

@media screen and (max-width: 750px) {
    .app-coupon {
        padding: 12.66667vw 0 10.26667vw;
        width: 93.33333vw;
    }
}

.app-coupon__head {
    display: flex;

    justify-content: space-around;
}

.app-coupon__head--left {
    width: 150px;
}

@media screen and (max-width: 750px) {
    .app-coupon__head--left {
        width: 12.53333vw;
    }
}

.app-coupon__head--center {
    text-align: center;
    letter-spacing: -0.05em;
    font-weight: bold;
    font-size: 36px;
    line-height: 1.5;
}

@media screen and (max-width: 750px) {
    .app-coupon__head--center {
        letter-spacing: -0.11em;
        font-size: 4.26667vw;
    }
}

.app-coupon__head--right {
    width: 165px;
}

@media screen and (max-width: 750px) {
    .app-coupon__head--right {
        margin-top: -2vw;
        width: 10.66667vw;
    }
}

.app-coupon__note {
    margin-top: 50px;
    margin-bottom: 70px;
    text-align: center;
}

@media screen and (max-width: 750px) {
    .app-coupon__note {
        margin-top: 6vw;
        margin-bottom: 0;
    }
}

.app-coupon__note--upper {
    letter-spacing: -0.05em;
    font-size: 28px;
    line-height: 1.5;
}

@media screen and (max-width: 750px) {
    .app-coupon__note--upper {
        font-size: 3.46667vw;
    }
}

.app-coupon__note--btm {
    display: flex;
    margin-top: 35px;

    justify-content: center;
    align-items: center;
}

@media screen and (max-width: 750px) {
    .app-coupon__note--btm {
        margin-top: 4.26667vw;
    }
}

.app-coupon__note--btm__left {
    margin-right: 20px;
    width: 84px;
}

@media screen and (max-width: 750px) {
    .app-coupon__note--btm__left {
        margin-top: 1.33333vw;
        margin-right: 2.66667vw;
        width: 13.33333vw;
    }
}

.app-coupon__note--btm__right {
    text-align: left;
    font-size: 16px;
    line-height: 1.5;
}

@media screen and (max-width: 750px) {
    .app-coupon__note--btm__right {
        width: 72.66667vw;
        font-size: 2.8vw;
    }
}

.app-coupon__registar-img {
    margin: 37px auto 0;
    width: 160px;
}

@media screen and (max-width: 750px) {
    .app-coupon__registar-img {
        margin: 4vw auto 5.06667vw;
        width: 23.33333vw;
    }
}

.app-coupon__under-arrow {
    margin: 50px auto 0;
    width: 47px;
}

@media screen and (max-width: 750px) {
    .app-coupon__under-arrow {
        margin-top: 6vw;
        width: 8vw;
    }
}

.app-coupon__under-arrow--narrow {
    margin-top: 30px;
}

@media screen and (max-width: 750px) {
    .app-coupon__under-arrow--narrow {
        margin-top: 0;
    }
}

/*  step-box
--------------------------------------------- */
.step-box {
    position: relative;
    display: flex;
    margin: 0 auto;
    width: 1018px;
    border: 3px solid #f18900;

    align-items: center;
}

@media screen and (max-width: 750px) {
    .step-box {
        left: -0.66667vw;
        margin-top: 14.66667vw;
        width: 87.73333vw;
        border: 0.4vw solid #f18900;
    }
}

.step-box:before {
    position: absolute;
    top: 6px;
    left: 6px;
    width: 100%;
    height: 100%;
    border: 3px solid #f18900;
    content: '';
    pointer-events: none;
}

@media screen and (max-width: 750px) {
    .step-box:before {
        top: 0.53333vw;
        left: 0.53333vw;
        border: 0.4vw solid #f18900;
    }
}

.step-box--step2 {
    margin-top: 36px;
}

@media screen and (max-width: 750px) {
    .step-box--step2 {
        margin-top: 5.33333vw;
    }
}

.step-box--step3 {
    margin-top: 35px;
}

@media screen and (max-width: 750px) {
    .step-box--step3 {
        margin-top: 6vw;
    }
}

.step-box--blue {
    margin-top: 115px;
    border: 3px solid #0068b7;
}

@media screen and (max-width: 750px) {
    .step-box--blue {
        margin-top: 9.06667vw;
        border: 0.4vw solid #0068b7;
    }
}

.step-box--blue:before {
    position: absolute;
    top: 6px;
    left: 6px;
    width: 100%;
    height: 100%;
    border: 3px solid #0068b7;
    content: '';
    pointer-events: none;
}

@media screen and (max-width: 750px) {
    .step-box--blue:before {
        top: 0.53333vw;
        left: 0.53333vw;
        border: 0.4vw solid #0068b7;
    }
}

.step-box__left-top {
    position: absolute;
    top: -3px;
    left: -3px;
    z-index: 1;
    width: 87px;
}

@media screen and (max-width: 750px) {
    .step-box__left-top {
        top: -2.66667vw;
        left: -1.33333vw;
        width: 12vw;
    }
}

.step-box__left-top:after {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 0;
    height: 0;
    border-width: 110px 130px 0 0;
    border-style: solid;
    border-color: #fff transparent transparent transparent;
    content: '';
}

@media screen and (max-width: 750px) {
    .step-box__left-top:after {
        border-width: 13.33333vw 17.33333vw 0 0;
    }
}

.step-box__left-top--wide {
    top: -10px;
    left: -5px;
}

@media screen and (max-width: 750px) {
    .step-box__left-top--wide {
        top: -1.06667vw;
        left: -1.33333vw;
    }
}

.step-box__left-top--wide:after {
    border-width: 120px 140px 0 0;
}

@media screen and (max-width: 750px) {
    .step-box__left-top--wide:after {
        border-width: 13.33333vw 16.66667vw 0 0;
    }
}

.step-box__left-top--blue {
    top: -6px;
    left: -10px;
}

@media screen and (max-width: 750px) {
    .step-box__left-top--blue {
        top: -1.06667vw;
        left: -1.33333vw;
    }
}

.step-box__left-top--blue:after {
    border-width: 105px 125px 0 0;
}

@media screen and (max-width: 750px) {
    .step-box__left-top--blue:after {
        border-width: 14vw 16.66667vw 0 0;
    }
}

.step-box__inner {
    margin: 50px auto 75px;
    text-align: center;
    letter-spacing: -0.05em;
}

@media screen and (max-width: 750px) {
    .step-box__inner {
        margin-top: 6.66667vw;
        margin-bottom: 4.66667vw;
    }
}

.step-box__head {
    font-weight: bold;
    font-size: 24px;
    line-height: 2.25;
}

@media screen and (max-width: 750px) {
    .step-box__head {
        font-size: 4.26667vw;
        line-height: 1.43;
    }
}

.step-box__list {
    margin: 28px auto 0;
    padding-left: 25px;
    width: 715px;
    text-align: left;
    letter-spacing: -0.06em;
}

@media screen and (max-width: 750px) {
    .step-box__list {
        margin-top: 4.66667vw;
        padding-left: 0;
        width: 74.66667vw;
    }
}

.step-box__item {
    padding-left: 1em;
    text-indent: -1em;
    font-size: 12px;
    line-height: 1.5;
}

@media screen and (max-width: 750px) {
    .step-box__item {
        font-size: 2.66667vw;
    }
}

.step-box__left-box {
    display: flex;
    padding: 45px 0 15px;
    width: 50%;

    align-items: center;
    justify-content: center;
}

@media screen and (max-width: 750px) {
    .step-box__left-box {
        padding: 6vw 0;
    }
}

.step-box__left-box--blue {
    padding: 15px 0;
}

@media screen and (max-width: 750px) {
    .step-box__left-box--blue {
        position: relative;
        padding: 6.66667vw 0 0;

        justify-content: space-around;
    }
}

.step-box__img-left {
    display: block;
    width: 177px;
}

@media screen and (max-width: 750px) {
    .step-box__img-left {
        width: 14.66667vw;
    }
}

.step-box__img-left--blue {
    width: 167px;
}

@media screen and (max-width: 750px) {
    .step-box__img-left--blue {
        width: 16.53333vw;
    }
}

.step-box__img-right {
    display: block;
    width: 176px;
}

@media screen and (max-width: 750px) {
    .step-box__img-right {
        width: 14.66667vw;
    }
}

.step-box__img-right--blue {
    width: 154px;
}

@media screen and (max-width: 750px) {
    .step-box__img-right--blue {
        width: 14.53333vw;
    }
}

.step-box__center-arrow {
    margin: 0 20px;
    width: 0;
    height: 0;
    border-width: 25px 0 25px 35px;
    border-style: solid;
    border-color: transparent transparent transparent #ffcb88;
}

@media screen and (max-width: 750px) {
    .step-box__center-arrow {
        margin: 0 1.33333vw;
        border-width: 3.33333vw 0 3.33333vw 4.53333vw;
    }
}

.step-box__center-arrow--blue {
    margin: 0 20px 0 10px;
    border-color: transparent transparent transparent #c2dbee;
}

@media screen and (max-width: 750px) {
    .step-box__center-arrow--blue {
        position: absolute;
        top: 50%;
        left: 50%;
        margin: 0 1.33333vw 0 2vw;
        -webkit-transform: translateX(-80%);
        transform: translateX(-80%);
    }
}

.right-container {
    display: flex;
    margin-top: 8px;
    width: 50%;
    background-color: #f18900;

    justify-content: center;
    align-items: center;
}

@media screen and (max-width: 750px) {
    .right-container {
        margin-top: 0.53333vw;
    }
}

.right-container--step2 {
    padding: 126px 0;
}

@media screen and (max-width: 750px) {
    .right-container--step2 {
        padding: 8.8vw 0;
    }
}

.right-container--step3 {
    padding: 48px 0;
}

@media screen and (max-width: 750px) {
    .right-container--step3 {
        padding: 6.66667vw 0 4.66667vw;
    }
}

.right-container--blue {
    padding: 100px 0;
    background-color: #0068b7;
}

@media screen and (max-width: 750px) {
    .right-container--blue {
        display: inline-flex;
        box-sizing: border-box;
        box-sizing: boder-box;
        padding: 4.66667vw 0 5.33333vw;
        text-align: left;
    }
}

.right-container__txt {
    display: block;
    width: 450px;
    color: #fff;
    font-weight: bold;
    font-size: 24px;
    line-height: 1.77;
}

@media screen and (max-width: 750px) {
    .right-container__txt {
        width: 37.33333vw;
        letter-spacing: -0.05em;
        font-size: 2.93333vw;
    }
}

.right-container__txt--step2 {
    line-height: 2.88;
}

@media screen and (max-width: 750px) {
    .right-container__txt--step2 {
        padding-left: 11.33333vw;
        text-align: left;
        line-height: 1.37;
    }
}

@media screen and (max-width: 750px) {
    .right-container__txt--step3 {
        text-align: left;
    }
}

@media screen and (max-width: 750px) {
    .right-container__txt--blue {
        line-height: 1.8;
    }
}

.right-container__img {
    display: inline-block;
}

.right-container__img--login {
    margin: 0 15px 15px;
    width: 120px;
}

@media screen and (max-width: 750px) {
    .right-container__img--login {
        margin: 2vw 1.33333vw 2vw 0;
        width: 14.66667vw;
    }
}

.right-container__img--menu {
    margin: 12px 20px 6px;
    width: 54px;
}

@media screen and (max-width: 750px) {
    .right-container__img--menu {
        margin: 2.13333vw 1.86667vw 1.33333vw 2.4vw;
        width: 6.66667vw;
    }
}

.right-container__img--find {
    margin: 6px 20px 12px;
    width: 143px;
}

@media screen and (max-width: 750px) {
    .right-container__img--find {
        margin: 0.93333vw 2.13333vw 0.93333vw 0;
        width: 15.73333vw;
    }
}

.right-container__img--offcoupon {
    margin: 0 20px 16px;
    width: 67px;
}

@media screen and (max-width: 750px) {
    .right-container__img--offcoupon {
        margin-right: 1.33333vw;
        margin-bottom: 1.6vw;
        margin-left: 0;
        width: 8.66667vw;
    }
}

.right-container__img--pay {
    margin: 12px;
    width: 119px;
}

@media screen and (max-width: 750px) {
    .right-container__img--pay {
        margin: 1.33333vw 0.8vw 1.33333vw 0;
        width: 14.4vw;
    }
}

/*  app-container
--------------------------------------------- */
.app-container {
    display: flex;
    margin: 20px auto 0;
    width: 690px;

    justify-content: space-between;
}

@media screen and (max-width: 750px) {
    .app-container {
        margin-top: 4vw;
        width: 72vw;
    }
}

.app-box {
    display: block;
    width: 252px;
}

@media screen and (max-width: 750px) {
    .app-box {
        width: 33.33333vw;
    }
}

.app-box__app {
    display: block;
    width: 252px;
}

@media screen and (max-width: 750px) {
    .app-box__app {
        margin-top: 5px;
        width: 33.33333vw;
    }
}

.app-box__app:hover {
    opacity: 0.8;
}

.app-box__txt {
    font-weight: bold;
    font-size: 18px;
    line-height: 2.8;
}

@media screen and (max-width: 750px) {
    .app-box__txt {
        font-size: 3.2vw;
        line-height: 1.54;
    }
}

.qr-box {
    width: 125px;
}

.qr-box__img {
    width: 125px;
}

/*  message-box
--------------------------------------------- */
.message-box {
    display: flex;
    margin: 100px auto 0;
    width: 954px;

    justify-content: space-between;
    align-items: center;
}

@media screen and (max-width: 750px) {
    .message-box {
        flex-direction: column;
        margin-top: 10.66667vw;
        width: 81.33333vw;
    }
}

.message-box__txt {
    display: block;
    margin-top: 70px;
    letter-spacing: -0.05em;
    font-weight: bold;
    font-size: 32px;
    line-height: 0.84;
}

@media screen and (max-width: 750px) {
    .message-box__txt {
        margin-top: 9.6vw;
        font-size: 4vw;
        line-height: 1.4;
    }
}

.message-box__txt a {
    display: inline-block;
    padding-bottom: 8px;
    border-bottom: 2px solid #eb6126;
    color: #eb6126;
}

@media screen and (max-width: 750px) {
    .message-box__txt a {
        padding-bottom: 0;
        border-bottom: 0.26667vw solid #eb6126;
    }
}

.message-box__txt a:hover {
    opacity: 0.8;
}

@media screen and (max-width: 750px) {
    .message-box__txt a:hover {
        opacity: 0.8;
    }
}

.message-box__img {
    display: block;
    margin: 0 auto;
    width: 960px;
}

@media screen and (max-width: 750px) {
    .message-box__img {
        width: 86.66667vw;
    }
}

/*  caution
--------------------------------------------- */
.caution {
    margin: 0 auto;
    width: 1024px;
}

@media screen and (max-width: 750px) {
    .caution {
        width: 100%;
    }
}

.caution__head {
    display: flex;
    width: 100%;
    height: 94px;
    background-color: #f18900;
    color: #fff;
    font-weight: bold;
    font-size: 36px;
    line-height: 0.77;

    align-items: center;
    justify-content: center;
}

@media screen and (max-width: 750px) {
    .caution__head {
        height: 12.53333vw;
        font-size: 4.8vw;
    }
}

.caution__list {
    margin: 25px auto 0;
    padding-left: 70px;
    width: 1024px;
    text-align: left;
    text-indent: -1em;
}

@media screen and (max-width: 750px) {
    .caution__list {
        margin-top: 1.86667vw;
        padding-left: 0;
        width: 90vw;
    }
}

.caution__item {
    color: #311e06;
    font-weight: bold;
    font-size: 14px;
    line-height: 1.92;
}

@media screen and (max-width: 750px) {
    .caution__item {
        letter-spacing: -0.06em;
        font-size: 2.66667vw;
        line-height: 1.5;
    }
}

.caution__inner {
    margin: 0 auto;
    width: 700px;
}

@media screen and (max-width: 750px) {
    .caution__inner {
        width: 77.06667vw;
    }
}

.caution__link {
    display: block;
    margin-top: 30px;
    height: 86px;
}

@media screen and (max-width: 750px) {
    .caution__link {
        margin-top: 4vw;
        margin-bottom: 37.86667vw;
        height: 9.33333vw;
    }
}

.caution__link:hover {
    opacity: 0.8;
}

/*  sclist-btn
--------------------------------------------- */
.sclist-btn {
    display: none;
}

@media screen and (max-width: 750px) {
    .sclist-btn {
        display: block;
        margin-top: 25.6vw;
        width: 100%;
        height: 16vw;
    }
}

/*   fix-area
--------------------------------------------- */
.fix-area {
    position: fixed;
    right: 25px;
    bottom: 20px;
    z-index: 1000;
    width: 160px;
}

@media screen and (max-width: 750px) {
    .fix-area {
        bottom: 0;
        left: 0;
        width: 100%;
    }
}

.fix-area.js-fix {
    position: absolute;
    bottom: auto;
    margin-top: 85px;
}

@media screen and (max-width: 750px) {
    .fix-area.js-fix {
        margin-top: -11.86667vw;
    }
}

.fix-area--sclist {
    position: fixed;
    right: 25px;
    bottom: 20px;
    z-index: 1000;
    width: 160px;
}

@media screen and (max-width: 750px) {
    .fix-area--sclist {
        bottom: 0;
        left: 0;
        width: 100%;
    }
}

.fix-area--sclist.js-fix {
    position: absolute;
    bottom: auto;
    margin-top: 65px;
}

@media screen and (max-width: 750px) {
    .fix-area--sclist.js-fix {
        margin-top: -11.86667vw;
    }
}

.fix-area--pagetop {
    right: 25px;
    bottom: 110px;
    width: 64px;
}

@media screen and (max-width: 750px) {
    .fix-area--pagetop {
        right: 2.66667vw;
        bottom: 17.33333vw;
        left: unset;
        width: 16.8vw;
    }
}

.fix-area--pagetop.js-fix {
    position: absolute;
    bottom: auto;
    margin-top: 12px;
}

@media screen and (max-width: 750px) {
    .fix-area--pagetop.js-fix {
        margin-top: -32.8vw;
    }
}

.fix-area--pagetop-sclist {
    right: 25px;
    bottom: 130px;
    width: 64px;
}

@media screen and (max-width: 750px) {
    .fix-area--pagetop-sclist {
        right: 2.66667vw;
        bottom: 17.33333vw;
        left: unset;
        width: 16.8vw;
    }
}

.fix-area--pagetop-sclist.js-fix {
    position: absolute;
    bottom: auto;
    margin-top: -15px;
}

@media screen and (max-width: 750px) {
    .fix-area--pagetop-sclist.js-fix {
        margin-top: -30vw;
    }
}

.fix-area__link {
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

@media screen and (max-width: 750px) {
    .fix-area__link {
        opacity: 1;
        pointer-events: auto;
    }
}

.fix-area__link:hover {
    opacity: 0.8 !important;
}

@media screen and (max-width: 750px) {
    .fix-area__link:hover {
        opacity: 1 !important;
    }
}

.fix-area__link.show {
    opacity: 1;
    pointer-events: auto;
}

/*  footer
--------------------------------------------- */
.footer {
    margin-top: 175px;
    background-color: #595757;
}

@media screen and (max-width: 750px) {
    .footer {
        margin-top: 0;
    }
}

.footer__container {
    padding-top: 40px;
}

@media screen and (max-width: 750px) {
    .footer__container {
        padding-top: 10vw;
    }
}

/*  footer-nav
--------------------------------------------- */
.footer-nav {
    display: flex;
    padding-bottom: 45px;

    justify-content: center;
}

@media screen and (max-width: 750px) {
    .footer-nav {
        flex-direction: column;
        padding-top: 1.33333vw;
        padding-bottom: 9.33333vw;

        align-items: center;
    }
}

.footer-nav__item {
    position: relative;
    padding-left: 15px;
    color: #fff;
    font-size: 12px;
    line-height: 1.9;
}

@media screen and (max-width: 750px) {
    .footer-nav__item {
        padding-left: 0;
        font-size: 2.66667vw;
        line-height: 2.5;
    }
}

.footer-nav__item:after {
    position: absolute;
    top: 0;
    left: 5px;
    content: "/";
}

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

.footer-nav__item--first:after {
    display: none;
}

.footer-nav__link:hover {
    opacity: 0.8;
}

/*  footer-copyright
--------------------------------------------- */
.footer-copyright {
    padding: 7px 0;
    background-color: #fff;
}

@media screen and (max-width: 750px) {
    .footer-copyright {
        padding: 12vw 0 7.33333vw;
    }
}

.footer-copyright__inner {
    display: flex;
    margin: 0 auto;
    width: 952px;

    justify-content: space-between;
    align-items: center;
}

@media screen and (max-width: 750px) {
    .footer-copyright__inner {
        flex-direction: column-reverse;
        width: 80%;
    }
}

.footer-copyright__txt {
    color: #595757;
    text-align: center;
    letter-spacing: -0.05em;
    font-size: 12px;
    line-height: 1.9;
}

@media screen and (max-width: 750px) {
    .footer-copyright__txt {
        margin-top: 9.33333vw;
        font-size: 2.93333vw;
        line-height: 1.72;
    }
}

.footer-copyright__logo {
    width: 125px;
}

@media screen and (max-width: 750px) {
    .footer-copyright__logo {
        width: 54.66667vw;
    }
}

.footer-copyright__logo:hover {
    opacity: 0.8;
}

/* ---------------------------------------------
*   sclist
--------------------------------------------- */
.sclist {
    box-sizing: border-box;
    margin: 0 auto;
    padding-top: 60px;
    width: 1024px;
    background-color: #fff;
}

@media screen and (max-width: 750px) {
    .sclist {
        padding: 8vw 0 44vw;
        width: 90.66667vw;
    }
}

.sclist__ttl {
    margin: 0 auto 60px;
    width: 295px;
    color: #f18900;
    text-align: center;
    font-weight: bold;
    font-size: 42px;
    line-height: 0.95;
}

@media screen and (max-width: 750px) {
    .sclist__ttl {
        margin-bottom: 8vw;
        width: 47.33333vw;
        font-size: 5.6vw;
    }
}

.sclist__summary {
    position: relative;
    box-sizing: border-box;
    margin: 0 auto 55px;
    padding: 20px 0;
    width: 820px;
    border: 2px solid #f18900;
    background-color: #fffee5;
}

@media screen and (max-width: 750px) {
    .sclist__summary {
        margin-bottom: 10vw;
        padding: 5.33333vw 0;
        width: 100%;
    }
}

.sclist__lead {
    margin-bottom: 15px;
    color: #000;
    text-align: center;
    letter-spacing: -0.05em;
    font-weight: bold;
    font-size: 28px;
    line-height: 1.3;
}

@media screen and (max-width: 750px) {
    .sclist__lead {
        margin-bottom: 5.33333vw;
        font-size: 3.73333vw;
    }
}

.sclist__mark {
    margin-bottom: 180px;
    text-align: center;
}

@media screen and (max-width: 750px) {
    .sclist__mark {
        margin-bottom: 33.33333vw;
    }
}

.sclist__txt {
    position: relative;
    display: inline-block;
    margin-bottom: 25px;
    color: #e6002d;
    letter-spacing: -0.05em;
    font-weight: bold;
    font-size: 25px;
}

@media screen and (max-width: 750px) {
    .sclist__txt {
        margin-bottom: 0;
        font-size: 3.46667vw;
    }
}

.sclist__img {
    position: absolute;
    top: 38%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

@media screen and (max-width: 750px) {
    .sclist__img {
        top: 33%;
    }
}

.sclist__img img {
    display: block;
    width: 180px;
}

@media screen and (max-width: 750px) {
    .sclist__img img {
        width: 28.66667vw;
    }
}

.sclist__note {
    box-sizing: border-box;
    margin: 0 auto;
    width: 550px;
    color: #000;
    text-align: center;
    letter-spacing: -0.05em;
    font-weight: bold;
    font-size: 12px;
    line-height: 1.5;
}

@media screen and (max-width: 750px) {
    .sclist__note {
        margin-bottom: 0;
        padding: 0 2em;
        width: 100%;
        text-align: left;
        text-indent: -1em;
        font-size: 2.66667vw;
        line-height: 1.7;
    }
}

/*  sclist-message
--------------------------------------------- */
.sclist-message {
    display: block;
    margin: 0 auto;
    width: 890px;
    color: #000;
    text-align: center;
    letter-spacing: -0.05em;
    font-size: 16px;
    line-height: 1.75;
}

@media screen and (max-width: 750px) {
    .sclist-message {
        margin-bottom: 9.33333vw;
        width: 90.66667vw;
        font-size: 2.66667vw;
    }
}

/*  sclist-sec
--------------------------------------------- */
.sclist-sec:first-of-type {
    margin-top: 40px;
}

@media screen and (max-width: 750px) {
    .sclist-sec:first-of-type {
        margin-top: 0vw;
    }
}

.sclist-sec__ttl {
    position: relative;
    display: flex;
    width: 100%;
    height: 88px;
    border-top: 2px solid #f18900;
    background-color: #fffee5;
    color: #000;
    font-weight: bold;
    font-size: 24px;
    cursor: pointer;
    transition: opacity 300ms;

    align-items: center;
    justify-content: center;
}

.sclist-sec__ttl:hover {
    opacity: 0.8;
}

.ios .sclist-sec__ttl:hover,
.android .sclist-sec__ttl:hover {
    opacity: 1;
}

@media screen and (max-width: 750px) {
    .sclist-sec__ttl {
        box-sizing: border-box;
        height: 12.4vw;
        border-top: 0.13333vw solid #f18900;
        font-size: 3.2vw;

        justify-content: center;
    }
}

.sclist-sec__ttl:after {
    position: absolute;
    top: 50%;
    right: 115px;
    width: 36px;
    height: 36px;
    background: url(../img/btn_ac-cl.png) 0 0 no-repeat;
    background-size: 100% auto;
    content: "";
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

@media screen and (max-width: 750px) {
    .sclist-sec__ttl:after {
        right: 4.66667vw;
        width: 4.8vw;
        height: 4.8vw;
        background: url(../img/btn_ac-cl_sp.png) 0 0 no-repeat;
        background-size: 100% auto;
    }
}

.sclist-sec__ttl--btm {
    border-bottom: 2px solid #f18900;
}

@media screen and (max-width: 750px) {
    .sclist-sec__ttl--btm {
        border-bottom: 0.13333vw solid #f18900;
    }
}

.sclist-sec__ttl.show {
    border-bottom: 2px solid #f18900;
}

@media screen and (max-width: 750px) {
    .sclist-sec__ttl.show {
        border-bottom: 0.13333vw solid #f18900;
    }
}

.sclist-sec__ttl.show:after {
    background: url(../img/btn_ac-op.png) 0 0 no-repeat;
    background-size: 100% auto;
}

@media screen and (max-width: 750px) {
    .sclist-sec__ttl.show:after {
        background: url(../img/btn_ac-op_sp.png) 0 0 no-repeat;
        background-size: 100% auto;
    }
}

.sclist-sec__content {
    display: none;
}

.sclist-sec__box {
    display: flex;
    padding: 30px 35px 60px 210px;

    align-items: flex-start;
    justify-content: center;
}

@media screen and (max-width: 750px) {
    .sclist-sec__box {
        display: block;
        margin-bottom: -2.66667vw;
        padding: 4.93333vw 3.6vw 12.66667vw;
    }
}

.sclist-sec__box--btm {
    padding-bottom: 0;
}

.sclist-sec__list {
    width: 50%;
}

@media screen and (max-width: 750px) {
    .sclist-sec__list {
        margin-right: 0;
        width: 100%;
    }
}

.sclist-sec__item {
    position: relative;
    margin-bottom: 9px;
    padding-left: 1em;
    letter-spacing: -0.05em;
    font-weight: bold;
    font-size: 16px;
    line-height: 1.0;
}

@media screen and (max-width: 750px) {
    .sclist-sec__item {
        margin-bottom: 0.26667vw;
        padding-left: 1.2em;
        font-size: 3.2vw;
        line-height: 1.5;
    }
}

.sclist-sec__item:before {
    position: absolute;
    top: 1px;
    left: 0;
    width: 14px;
    height: 14px;
    background-color: #f18900;
    content: "";
}

@media screen and (max-width: 750px) {
    .sclist-sec__item:before {
        top: 0.93333vw;
        width: 2.8vw;
        height: 2.8vw;
    }
}

.sclist-sec__item span {
    display: block;
    margin-top: 5px;
    letter-spacing: -0.02em;
    font-size: 14px;
}

@media screen and (max-width: 750px) {
    .sclist-sec__item span {
        margin-top: -0.4vw;
        font-size: 2.26667vw;
    }
}

/* ==========================================================
*
*   page
*
========================================================== */
/* ---------------------------------------------
*   Index Page
--------------------------------------------- */
/* ==========================================================
*
*   utility
*
========================================================== */
/* ---------------------------------------------
*   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;
    }
}

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

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