/* ========================================
   ネット決済の流れ
======================================== */

.credit-page {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}


/* 注意事項
---------------------------------------- */

.credit-section-title {
    margin: 0;
    padding: 12px 16px;
    background: #333;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
}

.credit-notice {
    background: #fff;
    border: 1px solid #c9aa6a;
}

.credit-notice-body {
    padding: 18px 20px;
    font-size: 15px;
    line-height: 1.8;
}




/* STEP
---------------------------------------- */

.credit-step {
    width: 100%;
    border: 1px solid #c9aa6a;
    background: #fff;
}

.credit-step-title {
    padding: 9px 14px;

    background: linear-gradient(90deg,
            #ae8a42,
            #d5bd82);

    color: #fff;

    font-size: 17px;
    font-weight: 600;

    line-height: 1.5;
}

.credit-step-body {
    min-height: 75px;

    padding: 18px 20px;

    font-size: 15px;
    line-height: 1.8;

    color: #333;
}

.credit-step-body p {
    margin-top: 0;
    margin-bottom: 7px;
}


/* 強調文字
---------------------------------------- */

/* 色付き文字は本文より少しだけ大きく */
.credit-highlight {
    font-size: 1.2em;
    font-weight: 600;
}

/* 赤文字 */
.credit-alert,
.credit-emphasis {
    color: #ff0000;
}

/* 電話番号 */
.credit-phone {
    color: #1C85F2;
}


/* STEP間の矢印
---------------------------------------- */

.credit-arrow {
    display: flex;

    align-items: center;
    justify-content: center;

    height: 40px;
}

.credit-arrow span {
    display: block;

    width: 0;
    height: 0;

    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 20px solid #c9aa6a;
}


/* 決済ボタン
---------------------------------------- */

.credit-payment-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-width: 230px;

    margin-top: 5px;
    padding: 12px 25px;

    background: #b18b45;

    border: 1px solid #947132;
    border-radius: 4px;

    color: #fff !important;

    font-size: 16px;
    font-weight: 600;

    text-align: center;
    text-decoration: none !important;

    transition:
        opacity .2s ease,
        transform .2s ease;
}

.credit-payment-button:hover {
    opacity: .85;
    transform: translateY(-1px);
}


/* ページ下部説明
---------------------------------------- */

.credit-description {
    padding: 20px;

    background: #fff;

    border: 1px solid #c9aa6a;
}

.credit-description h2 {
    margin-bottom: 15px;

    font-size: 22px;
    font-weight: 600;

    text-align: center;

    color: #333;
}

.credit-description p {
    margin-bottom: 5px;

    font-size: 14px;
    line-height: 1.7;
}


/* ========================================
   SP
======================================== */

@media screen and (max-width: 768px) {

    .credit-page {
        padding-left: 10px;
        padding-right: 10px;
    }


    .credit-section-title {
        padding: 10px 12px;

        font-size: 16px;
    }


    .credit-notice-body {
        padding: 14px;

        font-size: 13px;
        line-height: 1.7;
    }


    .credit-step-title {
        padding: 8px 10px;

        font-size: 14px;
    }


    .credit-step-body {
        min-height: 0;

        padding: 14px 12px;

        font-size: 13px;
        line-height: 1.7;
    }


    .credit-arrow {
        height: 34px;
    }

    .credit-arrow span {
        border-left-width: 17px;
        border-right-width: 17px;
        border-top-width: 17px;
    }


    .credit-payment-button {
        width: 100%;
        min-width: 0;

        padding: 12px;

        font-size: 14px;
    }


    .credit-description {
        padding: 15px 12px;
    }


    .credit-description h2 {
        font-size: 17px;
        line-height: 1.5;
    }


    .credit-description p {
        font-size: 12px;
        line-height: 1.7;
    }

}