/*============================================================================*/
/*ポイント全体*/
/*============================================================================*/
.point_contents {
    width: 90%;
    margin: 30px auto;
    color: #333333;
}

/*============================================================================*/
/*QRコード*/
/*============================================================================*/
.point_contents .point_qrcode_result_action_name {
    font-weight: bold;
    margin-bottom: 0.67em;
}
.point_contents .point_qrcode_sorry_message {
    font-weight: bold;
    font-size: 1.1em;
}

/*============================================================================*/
/*ポイントをためる*/
/*============================================================================*/
.point_contents .point_events .point_event h3 {
    color: dimgray;
    background: transparent;
    border-left: solid 5px #7db4e6;
    padding: 10px 15px;
}
.point_contents .point_events .point_event {
    margin-top: 50px;
    margin-bottom: 50px;
}
ul.point_events_table {
    list-style-type: none;
    padding: 15px;
    margin: 0;
}
ul.point_events_table li {
    position: relative;
    line-height: 30px;
    margin: 7px 0 10px 80px;
    padding-left: 10px;
    background: #eaf3ff;
}
ul.point_events_table li.result {
    background: #fffacd;
}
ul.point_events_table li:before {
    content: '';
    position: absolute;
    left: -90px;
    width: 80px;
    height: 30px;
    text-align: center;
    font-weight: bold;
    color: #fff;
    background: #5472cd;
    top: 50%;
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
ul.point_events_table li.published:before {
    content: '開始日';
}
ul.point_events_table li.expired:before {
    content: '終了日';
}
ul.point_events_table li.point:before {
    content: 'ポイント';
}
ul.point_events_table li.result:before {
    content: '参加日';
    background: #ffa07a;
}
ul.point_events_table li:after {
    content: "";
    display: block;
    position: absolute;
    left: -10px;
    height: 0;
    width: 0;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 7px solid #5472cd;
    top: 50%;
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
ul.point_events_table li.result:after {
    border-left: 7px solid #ffa07a;
}
.point_events .thanks {
    color: #5472cd;
}

/*============================================================================*/
/*ポイント詳細*/
/*============================================================================*/
/*合計ポイント、失効予定ポイント、ポイント履歴*/
.point_total ,
.point_expired,
.point_histories {
    margin: 50px 0;
}
/*合計ポイント、失効予定ポイント*/
.point_total_table ,
.point_expired_table {
    width: 100%;
    border-collapse: collapse;
}
.point_total_table tr ,
.point_expired_table tr {
    border-bottom: solid 2px white;
}
.point_total_table tr:last-child ,
.point_expired_table tr:last-child {
    border-bottom: none;
}
.point_total_table th ,
.point_expired_table th {
    position: relative;
    text-align: left;
    width: 30%;
    background-color: #52c2d0;
    color: white;
    text-align: center;
    padding: 10px 0;
}
.point_total_table th:after ,
.point_expired_table th:after {
    display: block;
    content: "";
    width: 0px;
    height: 0px;
    position: absolute;
    top:calc(50% - 10px);
    right:-10px;
    border-left: 10px solid #52c2d0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
}
.point_total_table td ,
.point_expired_table td {
    text-align: left;
    width: 70%;
    text-align: center;
    background-color: #eee;
    padding: 10px 0;
}
/*============================================================================*/
/*ポイント履歴*/
/*============================================================================*/
/*テーブル*/
.point_histories_table {
    width: 100%;
    text-align: center;
    border-collapse: collapse;
    border-spacing: 0;
    border-top: solid 1px #778ca3;
}
.point_histories_table tr:nth-child(2n+1){
    background: #e9faf9;
}
.point_histories_table th,
.point_histories_table td {
    padding: 10px;
    border-bottom: solid 1px #778ca3;
}
.scroll {
    overflow: auto;
    white-space: pre-line;
}
.scroll::-webkit-scrollbar {
    height: 5px;
}
.scroll::-webkit-scrollbar-track {
    background: #F1F1F1;
}
.scroll::-webkit-scrollbar-thumb {
    background: #bcbcbc;
}
/*履歴なし*/
.point_caution.no_history {
    margin: 15px 0;
}
/*検索ページ*/
.point_history {
    width: 90%;
    margin: 30px auto;
    color: dimgray;
}
/*検索条件*/
.point_search_form {
    margin: 20px 0;
}
.point_search_form label {
    font-size: 1.1em;
    font-weight: bold;
}
/*検索ボタン*/
.point_contents .submit {
    text-align: center;
    margin-bottom: 20px;
}
.point_contents .submit a {
    display: inline-block;
    padding: 0.5em 1em;
    text-decoration: none;
    background: #f7f7f7;
    border-left: solid 6px #516ab6;
    color: #516ab6;
    font-weight: bold;
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.29);
}
.point_contents .submit a:active {
    box-shadow: inset 0 0 2px rgba(128, 128, 128, 0.1);
    transform: translateY(2px);
}

@media print,
screen and (min-width: 768px) {
    .point_contents .submit {
        text-align: left;
    }
}
/*============================================================================*/
/*ポイントプレゼント*/
/*============================================================================*/
.point_contents.point_present {
    color: #333333;
}
/*入力エリア*/
.point_contents.point_present .point_present_input_area {
    padding: 20px 5px 30px 5px;
}
/*PC*/
@media print,
screen and (min-width: 768px) {

    /*フォーム*/
    .point_contents.point_present .form_area {
        width: 80%;
        margin: 50px auto;
    }
}

/*============================================================================*/
/*ポイント共通*/
/*============================================================================*/
/*見出し*/
.point_contents h1 {
    text-align: center;
    padding: 0.5em;
    background: #eaf3ff;
    border-bottom: solid 3px #516ab6;
}
.point_contents h2 {
    border-bottom: solid 3px #cce4ff;
    position: relative;
}
.point_contents h2:after {
    position: absolute;
    content: " ";
    display: block;
    border-bottom: solid 3px #5472cd;
    bottom: -3px;
    width: 20%;
}
/*ポイント数*/
.point.bold {
    font-weight: bold;
}
.point.large {
    font-size: 1.2em;
}
.point.red {
    color: orangered;
}
/*ポイント接尾語*/
.point_suffix {
    padding: 0 5px;
}
.point_suffix.blue {
    color: blue;
}
/*リンクボタン*/
.point_link{
    text-align: center;
    font-size: 1.2em;
}
.point_link a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 50px;
    position: relative;
    background: #228bc8;
    border: 1px solid #228bc8;
    box-sizing: border-box;
    padding: 0 25px 0 40px;
    color: #fff;
    font-size: 16px;
    letter-spacing: 0.1em;
    line-height: 1.3;
    text-align: left;
    text-decoration: none;
    transition-duration: 0.3s;
}
.point_link.red a {
    background: #f31e1f;
    border: 1px solid #f31e1f;
}

.point_link.yellow a {
    background: #ffaa00;
    color: #222;
    border: 1px solid #ffc57e;
    font-weight: bold;
}

.point_link a:before {
    content: '';
    width: 8px;
    height: 8px;
    border: 0;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
    position: absolute;
    top: 50%;
    left: 25px;
    margin-top: -6px;
}
.point_link.yellow a:before {

    border-top: 2px solid #222;
    border-right: 2px solid #222;
}
.point_link a:hover {
    background: #fff;
    color: #228bc8;
}
.point_link.red a:hover {
    color: #f31e1f;
}
.point_link.yellow a:hover {
    background: #ffc664;
    color: #222;
}

.point_link a:hover:before {
    border-top: 2px solid #228bc8;
    border-right: 2px solid #228bc8;
}
.point_link_button,
.point_link_button:visited{
    padding: 5px 20px;
    display: inline-block;
    border-radius: 10px;
    background-color: #374d7c;
    color: #fff;
}
.point_link_button:hover{
    background-color: #3282fb;
}

/*============================================================================*/
/*フェリアクーポン*/
/*============================================================================*/
/*見出し*/
.felia_coupon h1.felia {
    background: #fcc9cf;
    border-bottom: solid 3px #f996a3;
}
/*クーポンカード*/
.felia_coupon .coupon-card {
    margin: 10px;
}
/*クーポンカードタイトル*/
.felia_coupon .coupon-card h3 {
    font-weight: normal;
    background: #eb9e79;
    color: white;
    margin: 0;
    padding: 10px;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
}
.felia_coupon .coupon-card h3.member {
    background: #516ab6;
}
/*クーポンカード下部*/
.felia_coupon .coupon-card .bottom {
    padding: 10px;
    border-bottom: solid 2px #ddd;
    border-left: solid 1px #ddd;
    border-right: solid 1px #ddd;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
}
.felia_coupon .coupon-card dl {
    display: table;
    width: 100%;
    vertical-align: middle;
}
.felia_coupon .coupon-card dt,
.felia_coupon .coupon-card dd {
    display: table-cell;
}
.felia_coupon .coupon-card dt {
    width: 30%;
    font-weight: bold;
    color: #999;
}
.felia_coupon .coupon-card dd {
    width: 70%;
}
.felia_coupon .coupon-card dl.limit dd {
    font-weight: bold;
}