@charset "Shift_jis";

/*ZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZ

    JCB GOLD / JMBページ共通設定（2020/12/01以降用）

ZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZ*/

/*******************************ご利用特典部分*******************************/
.box_benefits .cpn_ttl_note {
    display: block;
    position: absolute;
    top: 50%;
    right: 1em;
    padding: 0.5em;
    border: 2px solid white;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    transform: translateY(-50%);
    z-index: 1;
}

/*JCB GOLD*/
.nyukai_jcb_gold .box_benefits .cpn_ttl_note {
    background: #D0A113;
}

/*JMB*/
.nyukai_jtb_jmb .box_benefits .cpn_ttl_note {
    background: #5f4587;
}

.box_benefits .btn_benefits_link_wrap {
    width: 620px;
    margin: 20px auto;

}

#contents_area .box_benefits a.btn_benefits_link {
    position: relative;
    display: block;
    padding: 1em;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    text-decoration: none;
    line-height: 1.5;
}

/*JCB GOLD*/
.nyukai_jcb_gold #contents_area .box_benefits a.btn_benefits_link {
    background: #5f4587;
}

/*JMB*/
.nyukai_jtb_jmb #contents_area .box_benefits a.btn_benefits_link {
    background: #D0A113;
}

#contents_area .box_benefits a.btn_benefits_link::before {
    position: absolute;
    top: 50%;
    right: 20px;
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 12px solid #fff;
    transform: translateY(-50%);
    content: "";
}

#contents_area .box_benefits a.btn_benefits_link:hover {
    opacity: 0.8;
}

/*******************************ポイント還元シミュレーション部分*******************************/

.pointSimulation {
    margin-top: 40px;
    margin-bottom: 40px;
}

.pointSimulation__contentsWrap {
    box-sizing: border-box;
    position: relative;
    display: flex;
    gap: 20px 40px;
    flex-wrap: wrap;
    margin: 0 auto;
    padding: 2em;
    max-width: 890px;
    background-color: #FFFCDB;
    border: 1px solid #000;
    border-radius: 10px;
    font-size: 16px;
    line-height: 1.5;
}

.pointSimulation__contents--ribbon {
    position: absolute;
    top: 0;
    left: 0;
    color: #fff;
    font-weight: bold;
    padding: 0.5em 1.2em 0.5em 0.5em;
    background-color: #E60013;
    font-size: 20px;
    line-height: 1;
    transform: translate(-20%, -50%) rotate(-10deg);
}

.pointSimulation__contents--ribbon::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 0.5em;
    height: 100%;
    background-image:
        linear-gradient(to bottom right, #E60013 50% , transparent 50%),
        linear-gradient(to top right, #E60013 50% , transparent 50%);
    background-size:
        100% 50%,
        100% 50%;
    background-position:
        top left,
        bottom left;
    background-repeat: no-repeat;
    /* ↓ブラウザによって若干切れるのを防ぐため100%にはしない */
    transform: translateX(99%);
}

.pointSimulation__contents {
    position: relative;
    width: calc((100% - 40px) / 2);
}

.pointSimulation__contents--achievement::after {
    content: "";
    position: absolute;
    top: 0;
    right: -20px;
    width: 1px;
    height: 100%;
    background-color: #000;
}

.pointSimulation__contentsHead {
    margin-bottom: 1em;
}

.pointSimulation__contentsHeadInner {
    position: relative;
    display: inline-block;
    padding: 0.25em 0.5em 0.25em 1em;
    background-color: #E95283;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    z-index: 1;
}

.pointSimulation__contents--dailyUse .pointSimulation__contentsHeadInner {
    background-color: #008CD6;
}

.pointSimulation__contentsHeadInner::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 0.5em;
    height: 100%;
    background-image:
        linear-gradient(to bottom right, #E95283 50% , transparent 50%),
        linear-gradient(to top right, #E95283 50% , transparent 50%);
    background-size:
        100% 50%,
        100% 50%;
    background-position:
        top left,
        bottom left;
    background-repeat: no-repeat;
    /* ↓ブラウザによって若干切れるのを防ぐため100%にはしない */
    transform: translateX(99%);
}

.pointSimulation__contents--dailyUse .pointSimulation__contentsHeadInner::after {
    background-image:
        linear-gradient(to bottom right, #008CD6 50% , transparent 50%),
        linear-gradient(to top right, #008CD6 50% , transparent 50%);
    background-position:
        top left,
        bottom left;
    background-repeat: no-repeat;
}

.pointSimulation__exampleList {
    margin-bottom: 1em;
    padding-bottom: 1em;
    border-bottom: 1px dotted #727171;
    font-size: 18px;
}

.pointSimulation__exampleList dt {
    padding-left: 1em;
    text-indent: -1em;
    font-weight: bold;
}
.pointSimulation__exampleList dt:not(:first-of-type) {
    margin-top: 1em;
}

/* インデントによる「display: inline-block;」の表示崩れ対策 */
.pointSimulation__exampleList dt .dib {
    text-indent: 0;
}

.pointSimulation__exampleList dd {
    margin-top: 0.5em;
    padding-left: 1em;
}
.pointSimulation__exampleTotal {
    padding-left: 1em;
    font-size: 18px;
    line-height: 1.5;
}
.pointSimulation__textColor {
    color: #E95283;
}

.pointSimulation__contents--dailyUse .pointSimulation__textColor {
    color: #008CD6;
}

.pointSimulation__contentsBalloon {
    width: 100%;
    padding: 1em 0.5em;
    background-color: #F0DA8F;
    border-radius: 10px; 
    font-weight: bold;
    text-align: center;
}