@charset "UTF-8";
body {
    font-family: 'Noto Sans JP', sans-serif;
    color: #333;
}

p {
    font-size: 12px;
    margin: 0 0 16px 0;
}

@media screen and (min-width: 1024px) and (orientation: landscape) {
    main {
        background-color: #fff0f5;
    }
}

/* 横向きかつ1024px以上の画面用のメディアクエリ */
@media (min-width: 1024px) and (orientation: landscape) {
    p {
        font-size: 18px;
    }
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"] {
    display: block;
    border: 2px solid #d3d3d3;
    width: 100%;
    border-radius: 6px;
    padding: 8px 11px;
    margin-bottom: 20px;
}

.el_inputPass_wrapper {
    position: relative;
}

.el_inputPass_icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background: url(../image/icon/pass-hide.png)no-repeat;
    background-position: center;
    background-size: 90%;
}

.el_inputPass_icon--show {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background: url(../image/icon/pass-show.png)no-repeat;
    background-position: center;
    background-size: 90%;
}

/*----------------------------------
セレクトボックス
------------------------------------*/
.el_selectWrapper {
    position: relative;
    margin-bottom: 20px;
}

.el_selectWrapper::before {
    content: "";
    right: 9px;
    top: calc(50% - 3px);
    position: absolute;
    border-width: 10px 8px 0px 8px;
    border-color: #d3d3d3 transparent transparent transparent;
    border-style: solid;
    pointer-events: none;
}

.el_select {
    border: 2px solid #d3d3d3;
    border-radius: 6px;
    padding: 0 15px;
    width: 100%;
    height: 44px;
}

/*----------------------------------
郵便番号
------------------------------------*/
.el_postalCode {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.el_postalCode_fieldWrapper {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    flex-grow: 0;
    flex-basis: calc(100% - 116px);
    max-width: calc(100% - 116px);
}

.el_postalCode_field01,
.el_postalCode_field02 {
    margin-bottom: 0 !important;
}

.el_postalCode_field01 {
    width: 48% !important;
}

.el_postalCode_field02 {
    width: 52% !important;
}

.el_postalCode_btn {
    flex-shrink: 0;
    flex-grow: 0;
    flex-basis: 86px;
    max-width: 86px;
    font-size: 16px;
    background: #d3d3d3;
    border: 2px solid #9c9c9c;
    border-radius: 6px;
    height: 44px;
    text-align: center;
    font-weight: 500;
    margin-left: 30px;
}

.el_postalCode_line {
    padding: 0 2px;
}

@media (max-width:359px) {

    .el_postalCode_fieldWrapper {
        flex-basis: calc(100% - 75px);
        max-width: calc(100% - 75px);
    }

    .el_postalCode_btn {
        flex-basis: 60px;
        max-width: 60px;
        font-size: 12px;
        margin-left: 15px;
    }
}

/*---------------------
プレースホルダー
----------------------*/
/* Webkit */
::-webkit-input-placeholder {
    color: #ededed;
    opacity: 1;
    font-weight: 500;
}
/* Firefox 18 以前 */
:-moz-placeholder {
    color: #ededed;
    font-weight: 500;
}
/* Firefox 19 以降 */
::-moz-placeholder {
    color: #ededed;
    opacity: 1;
    font-weight: 500;
}
/* IE 10 以降 */
:-ms-input-placeholder {
    color: #ededed;
    font-weight: 500;
}

/*----------------------------------
label
------------------------------------*/
.el_label {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 1em;
}

/* 必須 */
.el_label.el_label--required::after {
    content: "必須";
    display: inline-block;
    font-size: 0.9em;
    font-weight: 500;
    background: #df0012;
    color: #fff;
    padding: 3px 7px;
    margin-left: 8px;
}

/* 任意 */
.el_label.el_label--optional::after {
    content: "任意";
    display: inline-block;
    font-size: 0.9em;
    font-weight: 500;
    background: #9c9c9c;
    color: #fff;
    padding: 3px 7px;
    margin-left: 8px;
}

/*----------------------------------
電話
------------------------------------*/
.el_telUnit {
    display: flex;
    margin-bottom: 20px;
    align-items: center;
}

.el_telBox {
    display: inline-block;
}

.el_telBox:first-child {
    flex-shrink: 0;
    flex-grow: 0;
    flex-basis: 70px;
    max-width: 70px;
}

.el_tel {
    margin-bottom: 0 !important;
}

@media screen and (max-width: 359px) {
    .bl_loginForm_left,
    .bl_loginForm_right {
        display: block;
        margin-bottom: 10px;
        width: 100%;
    }
}

/*----------------------------------
チェックボックス
------------------------------------*/
.bl_check_wrapper {
    font-size: 12px;
    margin-bottom: 8px;
}

.bl_check {
    margin-bottom: 0;
}

.bl_check_input {
    display: none;
}

.bl_check_parts {
    padding-left: 20px;
    position: relative;
}

.bl_check_parts::before {
    content: "";
    display: block;
    position: absolute;
    top: 0px;
    left: 0;
    width: 18px;
    height: 18px;
    border: 2px solid #9e9da1;
    border-radius: 4px;
}

.bl_check_input:checked + .bl_check_parts::before {
    content: "";
    display: block;
    background: url(../image/icon/icon_check.svg)no-repeat;
    background-position: center;
    background-size: 10px 16px;
}

.bl_check_link {
    vertical-align: text-top;
    border-bottom: 1px solid;
}

/*----------------------------------
ヘルパー
------------------------------------*/
.hp_mb0 { margin-bottom: 0 !important; }
.hp_mb5p { margin-bottom: 5px!important; }
.hp_mb10p { margin-bottom: 10px !important; }
.hp_mb20p { margin-bottom: 20px !important; }
.hp_mb30p { margin-bottom: 30px !important; }
.hp_mb40p { margin-bottom: 40px !important; }
.hp_mb45p { margin-bottom: 45px !important; }
.hp_mb50p { margin-bottom: 50px !important; }
.hp_mb60p { margin-bottom: 60px !important; }

.hp_mt0 { margin-top: 0 !important; }
.hp_mt10p { margin-top: 10px !important; }
.hp_mt20p { margin-top: 20px !important; }
.hp_mt30p { margin-top: 30px !important; }
.hp_mt35p { margin-top: 35px !important; }
.hp_mt40p { margin-top: 40px !important; }
.hp_mt45p { margin-top: 45px !important; }
.hp_mt50p { margin-top: 50px !important; }
.hp_mt55p { margin-top: 55px !important; }
.hp_mt150p { margin-top: 150px !important; }

.hp_fz12p { font-size: 12px !important; }
.hp_fz13p { font-size: 13px !important; }
.hp_fz14p { font-size: 14px !important; }
.hp_fz15p { font-size: 15px !important; }
.hp_fz16p { font-size: 16px !important; }

.hp_mw150p {
    max-width: 150px !important;
    width: 100% !important;
}

.hp_centering { margin: 0 auto !important; }
.hp_color_9c9c9c { color: #9c9c9c !important; }

/*----------------------------------
ボタン
------------------------------------*/
.el_btn {
    font-size: 14px;
    font-weight: 700;
    display: block;
    margin: 0 auto 40px;
    max-width: 230px;
    width: 100%;
    border-radius: 6px;
    padding: 10px 0;
    text-align: center;
}

@media screen and (min-width: 1024px) and (orientation: landscape) {
 .el_btn {
    font-size: 16px;
  }
}

.el_btn.el_btn--red {
    background: #e61c2c url(../image/bg_btn_red.png)no-repeat;
    border: 2px solid #cc0012;
    background-position: center bottom;
    background-size: 100%;
    color: #fff;
    margin-top: 50px;
}

.el_btn.el_btn--green--news {
    background: #339900;
    background-position: center bottom;
    background-size: 100%;
    color:#fff;
    border: 2px solid #339900;
}

.el_btn.el_btn--line {
    background: #06c755 url(../image/icon/line.png)no-repeat;
    border: 2px solid #04b24b;
    background-size: 28px;
    background-position: 9px center;
    color: #fff;
    padding: 10px 0 10px 28px;
}

.el_btn.el_btn--google {
    background: #4285f4 url(../image/icon/btn_google.png)no-repeat;
    border: 2px solid #4285f4;
    background-size: 28px;
    background-position: 9px center;
    color: #fff;
    padding: 10px 0 10px 28px;
}

.el_btn.el_btn--grey {
    background: #d1d1d1 url(../image/bg_btn_gray.png)no-repeat;
    background-position: center top;
    background-size: 100%;
    color: #808080;
    text-shadow: 1px 1px 0 #fff;
    padding: 9px 0;
    border-style: solid;
    border-color: #b5b5b5;
    border-width: 1px 1px 2px 1px;
    margin-top: 80px;
    max-width: 160px;
}

.el_btn.el_btn--orange {
    background: #f89829 url(../image/bg_btn_orange.png)no-repeat;
    background-position: center top;
    background-size: 100%;
    border: 1px solid #f8931f;
    color: #fff;
}
.el_btn.el_btn--blue {
    background: #3366FF;
    background-position: center top;
    background-size: 100%;
    border: 1px solid #3366CC;
    color: #fff;
}

.el_btn.el_btn--skyblue {
    background: skyblue;
    background-position: center top;
    background-size: 100%;
    border: 1px solid skyblue;
    color: #444444;
}

.el_btn.el_btn--line-l {
    background: #06c755 url(../image/icon/line.png)no-repeat;
    border: 2px solid #06c755;
    background-size: 28px;
    background-position: 9px center;
    color: #fff;
    max-width: 100%;
    padding: 15px 0 15px 28px;
}

.el_btn.el_btn--google-l {
    background: #4285f4 url(../image/icon/btn_google.png)no-repeat;
    border: 2px solid #4285f4;
    background-size: 28px;
    background-position: 9px center;
    color: #fff;
    max-width: 100%;
    padding: 15px 0 15px 28px;
}

.el_btn.el_btn--width{
    max-width: 160px;
}

/*----------------------------------
レイアウト
------------------------------------*/
.ly_conts {
    padding: 54px 36px 110px;
    max-width: 540px;
    width: 100%;
    margin: 0 auto;
}
.ly_conts1 {
    padding: 54px 30px 110px;
    max-width: 540px;
    width: 100%;
    margin: 0 auto;
}

@media screen and (min-width: 1024px) and (orientation: landscape) {
    .ly_conts1 {
        background: #fff;
        min-height: 100dvh;
        height: 100%;
    }
}

.ly_contents {
    display: grid;
    justify-content: center;
    margin-top: 40px
}

.ly_conts.ly_conts--gutter-s {
    padding-left: 15px;
    padding-right: 15px;
}

@media screen and (min-width: 1024px) and (orientation: landscape) {
    .ly_conts {
        max-width: 100%;
        width: 700px;
        background: #fff;
        min-height: 100dvh;
        height: 100%;
    }

    .ly_conts.ly_conts--gutter-s {
        padding-left: 0;
        padding-right: 0;
    }
}

/*----------------------------------
ページタイトル（各ページで使用）
------------------------------------*/
.bl_pageTtl {
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 45px;
}

@media screen and (min-width: 1024px) and (orientation: landscape) {
    .bl_pageTtl {
        font-size: 20px;
    }
}

.bl_pageTtl_sub {
    font-weight: 700;
    font-size: 14px;
    text-align: center;
    margin-bottom: 45px;
}

.bl_pageTtl_subs {
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 45px;
}

/*----------------------------------
payment-home.htmlで使用
------------------------------------*/
.un_payment_lv2Heading {
    font-size: 16.5px;
    font-weight: 700;
    padding-bottom: 15px;
    border-bottom: 2px solid #df0012;
    margin-bottom: 15px;
}

.un_payment_promotion {
    font-weight: 700;
    margin-bottom: 24px;
    border: 2px solid #df0012;
    border-radius: 10px;
}

.un_payment_promotion_head {
    background: #df0012;
    color: #ffffff;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    padding: 5px;
    margin-bottom: 16px;
}

.reapaOWbanner {
    width:100%;
    margin-top:5px;
}

.giftBanner {
    width:80%;
    margin-top:5px;
}

.paymentImg {
    width:250px;
}

.paymentImgBtn {
    width:200px;
}

.paymentImgText {
    width:200px;
}

.bpmImg {
    margin-top:15px;
}

.bankImg {
    margin-top:15px;
}

.un_payment_promotion_ttl {
    font-size: 16px;
    margin-bottom: 5px;
    text-align: center;
}

.un_payment_promotion_purchase {
    /*コレ*/display: flex;
    /*コレ*/justify-content: flex-end;
}

.un_payment_promotion_purchase_text{
    border: 2px solid #df0012;
    background-color:#df0012;
    display: inline-block;
    color: #fff;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 0;
    padding-right:2px;
    padding-left:2px;
    margin-right:10px;
    margin-top:-25px;
}

.un_payment_promotion_purchase_num {
    margin-left: 0px;
}

.un_payment_date {
    font-size: 14px;
    color: #df0012;
    background: #fff;
    border-radius: 90px;
    text-align: left;
    padding-left: 5px;
    font-weight: 450;
}

.un_payment_item {
    font-weight: 700;
    border-bottom: 1px solid #d3d3d3;
    padding: 8px 0;
    align-items: center;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.un_payment_item_l {
    float: left;
    width: 70%;
}

.un_payment_item_r {
    float: right;
}

.un_payment_promotion_body .un_payment_item {
    border: none;
}

.un_payment_item_pt {
    font-size: 14px;
    width: 100%;
    margin-bottom: 5px;
    margin-left: 20px;
}

.un_payment_item_ptNum_text {
    float:left;
    font-size: 12px;
    font-weight: 500;
    vertical-align: middle;
}

.subscription_icon {
    float:left;
    font-size: 12px;
    font-weight: 500;
    vertical-align: middle;
}

.un_payment_item_ptNum {
    text-align: right;
    float:right;
    margin-right: 5px;
}

.payment_icon {
    width:30px;
    height:30px;
    vertical-align: middle;
}

.un_payment_item_txt {
    font-size: 10px;
    color: #9c9c9c;
    margin-bottom: 0;
}

.un_payment_item_btn {
    min-width: 90px;
    height: 35px;
    background: url(/image/payment/bg_btn_green.png)no-repeat;
    background-position: center top;
    background-size: 100%;
    color: #fff;
    font-size: 17px;
    border-radius: 5px;
    text-align: center;
    padding: 0 7px;
    text-shadow: 0 1px 0 rgba(0,0,0,.3);
    margin-right:10px
}

.un_payment_item_btn_pt {
    margin-right: 4px;
}

.un_payment_nav {
    margin-top: 32px;
}

.un_payment_nav_item {
    font-size: 10px;
    margin-bottom: 6px;
    text-align: center;
}

.un_payment_nav_link {
    display: inline-block;
    padding-bottom: 2px;
    border-bottom: 1px solid;
}

/*----------------------------------
media
------------------------------------*/
.bl_media {
    font-weight: 500;
    border: 1px solid #d3d3d3;
    padding: 13px 8px;
    display: flex;
    margin-bottom: 25px;
}

.bl_media:last-of-type {
    margin-bottom: 0;
}

.bl_media_imgWrapper {
    flex-shrink: 1;
    flex-grow: 0;
    flex-basis: 100px;
    max-width: 100px;
    align-self: center;
}

@media screen and (min-width: 1024px) and (orientation: landscape) {
    .bl_media_imgWrapper {
        flex-basis: 150px;
        max-width: 150px;
    }
}

.bl_media_imgWrapper img {
    max-width: 100%;
}

.bl_media_content {
    flex-shrink: 1;
    flex-grow: 0;
    flex-basis: calc(100% - 100px);
    max-width: calc(100% - 100px);
    padding-left: 14px;
}

.bl_media_date {
    margin-bottom: 10px;
    text-align: right;
}

.bl_media_date p {
    font-size: 8px;
    margin-bottom: 5px;
}

@media screen and (min-width: 1024px) and (orientation: landscape) {
    .bl_media_date p {
        font-size: 12px;
    }
}

.bl_media_date p:last-child {
    margin-bottom: 0;
}

.bl_media_tag {
    display: inline-block;
    font-size: 8px;
    font-weight: 500;
    background: #d3d3d3;
    padding: 3px 9px;
    margin-bottom: 5px;
}

.bl_media_ttl {
    font-size: 10px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

@media screen and (min-width: 1024px) and (orientation: landscape) {
    .bl_media_tag,
    .bl_media_ttl {
        font-size: 12px;
    }
}

.bl_media_item {
    display: flex;
    justify-content: space-between;
    font-size: 9px;
    margin-bottom: 8px;
}

@media screen and (min-width: 1024px) and (orientation: landscape) {
    .bl_media_item {
        font-size: 12px;
    }
}

.bl_media_item:last-child {
    margin-bottom: 0;
}

footer,
header {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
}

.bl_info_content {
    flex-shrink: 1;
    flex-grow: 0;
    flex-basis: 100%;
    max-width: 100%;
    padding-left: 14px;
    padding-right: 14px;
}

/*----------------------------------
レイアウト要素
------------------------------------*/
.ly_login_inner {
    padding: 36px 15px 110px;
}

.ly_home_inner {
    padding: 10px 15px 140px;
}

/*----------------------------------
header
------------------------------------*/
.bl_header {
    box-shadow: 2px 2px 3px rgba(0,0,0,.1);
    width: 100%;
}

.bl_header_logo {
    text-align: center;
    padding: 5px;
    align-content: center;
}

.bl_header_logo a {
    display: inline-block;
}

.bl_header_logo img {
    width: 100%;
    aspect-ratio: auto;
    max-width: 250px;
}

.page_home {
    margin-top: 80px;
}

.bl_header .swiper-slide img {
    width: 100%;
}

.bl_header .swiper-pagination {
    position: static;
    padding-top: 10px;
}

.swiper-pagination-bullet-active {
    background: #333
}

.swiper-slide img {
    width: 100%;
}

/*----------------------------------
Home footer nav btn
------------------------------------*/
.bl_homeFooter_navBtn > span {
    background: #000;
    height: 3px;
    width: 22px;
    display: block;
    position: absolute;
    right: 11px;
}

.bl_homeFooter_navBtn > span:first-child {
    top: 14px;
}

.bl_homeFooter_navBtn > span:nth-child(2) {
    top: 21px;
}

.bl_homeFooter_navBtn > span:nth-child(3) {
    top: 28px;
}

/*----------------------------------
footer
------------------------------------*/
.ly_footer {
    background: #e60012;
}

.bl_copyright {
    font-size: 11px;
    color: #fff;
    width: 100%;
    padding: 8px;
    text-align: center;
}

.bl_copyright .small {
    font-size: 11px;
}

/*----------------------------------
nav
------------------------------------*/
.bl_navItem {
    font-size: 15px;
    font-weight: 700;
}

.bl_navItem_in {
    display: block;
    border-bottom: 1px solid #d3d3d3;
    padding: 16px 5%;
    width: 100%;
}

/*----------------------------------
ログインページで使用
------------------------------------*/
.un_loginForm_txt {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 0;
}

.un_loginForm_txt a {
    border-bottom: 1px solid;
}

.un_loginForm_btn {
    background: #e61c2c url(../image/bg_btn_red.png)no-repeat;
    background-position: center bottom;
    background-size: 100%;
    color: #fff;
    border: 2px solid #cc0012;
    font-size: 13px;
    border-radius: 10px;
    display: block;
    max-width: 160px;
    margin: 0 auto;
    width: 100%;
    padding: 10px 0;
    text-align: center;
    font-weight: 700;
}

.un_loginForm_lineBtn {
    background: #06c755 url(../image/icon/line.png)no-repeat;
    background-size: 28px;
    background-position: 9px center;
    color: #fff;
    border: 2px solid #04b24b;
    font-size: 14px;
    border-radius: 10px;
    display: block;
    max-width: 160px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    font-weight: 700;
    padding: 10px 0 10px 28px;
    margin-top: 44px;
}

.un_loginForm_returnBtn {
    background: #d1d1d1 url(../image/bg_btn_gray.png)no-repeat;
    background-position: center top;
    background-size: 100%;
    color: #808080;
    text-shadow: 1px 1px 0 #fff;
    font-size: 14px;
    border-radius: 10px;
    display: block;
    max-width: 160px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    font-weight: 700;
    padding: 9px 0;
    border-style: solid;
    border-color: #b5b5b5;
    border-width: 1px 1px 2px 1px;
    margin-top: 74px;
}

.un_loginForm_col2 {
    display: flex;
    margin-bottom: 22px;
    font-size: 0;
}

.un_loginForm_right {
    text-align: right;
}

.un_loginForm_left,
.un_loginForm_right {
    display: inline-block;
    width: 50%;
}

.un_loginForm_checkWrapper {
    font-size: 10px;
    font-weight: 500;
    margin-bottom: 0;
}

.un_loginForm_check {
    display: none;
}

.un_loginForm_check_txt {
    padding-left: 14px;
    position:relative;
    font-size: 12px;
}

.un_loginForm_check_txt::before {
    content: "";
    display: block;
    position: absolute;
    top: 2px;
    left: 0;
    width: 14px;
    height: 14px;
    border: 2px solid #9e9da1;
    border-radius: 4px;
}

.un_loginForm_check:checked + .un_loginForm_check_txt::before {
    content: "";
    display: block;
    background: url(../image/icon/icon_check.svg)no-repeat;
    background-position: center;
    background-size: 10px 16px;
}

@media screen and (max-width: 359px) {
    .un_loginForm_left,
    .un_loginForm_right {
        display: block;
        margin-bottom: 10px;
        width: 100%;
    }

    .un_loginForm_right {
        text-align: left;
        margin-bottom: 20px;
    }
}

/*----------------------------------
アカウント管理画面で使用
------------------------------------*/
.un_accountSet_form_item {
    display: flex;
}

.un_accountSet_form_item_btn {
    font-size: 12.5px;
    font-weight: 500;
    flex-shrink: 0;
    flex-grow: 0;
    flex-basis: 52px;
    max-width: 52px;
    background: #eaeaea;
    height: 44px;
    text-align: center;
    border-radius: 6px;
    border: 2px solid #d3d3d3;
    margin-left: 10px;
    letter-spacing: -.02em;
}

.un_accountSet_form_item_field {
    font-size: 15px;
    border: 2px solid #d3d3d3;
    width: calc(100% - 62px);
    border-radius: 6px;
    padding: 11px 15px;
    margin-bottom: 20px;
}

.un_accountSet_form_item_y,
.un_accountSet_form_item_m {
    margin-right: 5px;
}

/*----------------------------------
もっと見るボタン
------------------------------------*/
.bl_moreBtn_wrapper {
    text-align: center;
}

.bl_moreBtn {
    border: 2px solid #d3d3d3;
    font-size: 13px;
    color: #9c9c9c;
    padding: 15px 20px;
    border-radius: 12px;
}

.bl_moreBtn::before {
    content: "";
    display: inline-block;
    background: url(/image/icon/icon_more_btn.svg)no-repeat;
    background-size: 12px 12px;
    background-position: center;
    width: 12px;
    height: 12px;
    vertical-align: bottom;
    margin-right: 20px;
}

/*----------------------------------
マイページ
------------------------------------*/
.un_myPage_info {
    padding: 16px 36px;
}

.un_myPage_today {
    padding: 16px 36px;
    margin-bottom:16px;
}

.un_myPage_info_head {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 16px;
}

.un_myPage_item {
    margin-bottom: 12px;
    display: flex;
}

.un_myPage_name {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 0;
    white-space: nowrap;
    overflow: hidden;
    text-align: center;
    text-overflow: ellipsis;
}

.un_myPage_userId {
    font-size: 8px;
    margin-bottom: 0;
    min-width: 90px;
}

.un_myPage_userId_num {
    font-size: 15px;
    font-weight: 700;
    margin-left: 8px;
}

.un_myPage_item_field {
    background: #fff;
    border-radius: 5px;
    height: 37px;
    padding: 0 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 1;
    flex-grow: 1;
    flex-basis: calc(100% - 59px);
    max-width: calc(100% - 59px);
}

.un_myPage_item_field_txt {
    font-size: 8px;
}

@media screen and (min-width: 1024px) and (orientation: landscape) {
    .un_myPage_item_field_txt {
        font-size: 12px;
    }
    .bl_playFooter_autoBtn img {
        width:300px;
    }
}

.un_myPage_item_field_num {
    font-size: 21px;
}

.un_myPage_item_field_unit {
    font-size: 9px;
    font-weight: 700;
    display: inline-block;
    width: 30px;
}

.un_myPage_info {
    background: #f7f2ed;
}

.un_myPage_today {
    background: #bacbe8;
}

.un_myPage_info_head {
    display: flex;
}

.un_myPage_item_btn {
    display: inline-block;
    font-size: 11px;
    letter-spacing: -.02em;
    font-weight: 700;
    background: #fff;
    border: 1px solid #d3d3d3;
    height: 37px;
    line-height: 37px;
    border-radius: 5px;
    flex-shrink: 0;
    flex-grow: 0;
    flex-basis: 46px;
    max-width: 46px;
    text-align: center;
    margin-left: 13px;
}

.un_myPage_nav {
    padding: 0 15px;
}

.un_myPage_nav li {
    font-size: 15px;
    font-weight: 700;
}

.un_myPage_nav li a {
    display: block;
    padding: 18px 0;
    border-bottom: 1px solid #d3d3d3;
}



/*----------------------------------
play画面 ヘッダー
------------------------------------*/
.bl_playHeader {
    background: #000;
    padding: 3px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
}

.bl_playHeader_col {
    display: flex;
}

.bl_playHeader_left {
    flex-shrink: 1;
    flex-grow: 0;
    flex-basis: 25px;
    max-width: 25px;
    text-align: center;
    margin-right: 4px;
}

.bl_playHeader_right {
    flex-shrink: 1;
    flex-grow: 0;
    flex-basis: calc(100% - 29px);
    max-width: calc(100% - 29px);
    display: flex;
    align-items: center;
    background: url(/image/play/bg_silver_flame.svg)no-repeat;
    background-size: 100% 100%;
    background-position: center;
    padding: 10px 18px;
}

/* 確変中*/
.bl_playHeader_right.bl_playHeader_right__change,
.bl_battleHeader_right.bl_battleHeader_right__change {
    background: url(../image/play/bg_red_flame.svg)no-repeat;
    background-size: 100% 100%;
    background-position: center;
}

.bl_playHeader_right_number.bl_playHeader_right__change,
.bl_playHeader_right_chart.bl_playHeader_right__change {
    background: #000 url(../image/play/bg_red_flame.svg)no-repeat;
    background-size: 100% 100%;
    background-position: center;
}

/* 大当たり中*/
.bl_playHeader_right.bl_playHeader_right__bigHit,
.bl_battleHeader_right.bl_battleHeader_right__bigHit {
    background: url(../image/play/bg_rainbow_flame.svg)no-repeat;
    background-size: 100% 100%;
    background-position: center;
}

.bl_playHeader_right_number.bl_playHeader_right__bigHit,
.bl_playHeader_right_chart.bl_playHeader_right__bigHit {
    background: #000 url(../image/play/bg_rainbow_flame.svg)no-repeat;
    background-size: 100% 100%;
    background-position: center;
}


.bl_playHeader_right_box1,
.bl_playHeader_right_box2 {
    margin-right: 10px;
    padding-right: 10px;
    border-right: 1px solid #fff;
    flex-shrink: 1;
    flex-grow: 0;
    flex-basis: auto;
}



/* グラフ */
.bl_playHeader_right_box3 {
    flex-shrink: 1;
    flex-grow: 1;
    flex-basis: 100px;
    height: 100%;
}

.bl_playHeader_graph {
    width: 100%;
    height: 100%;
    /*background: url(/image/play/header_graph_flame.svg)no-repeat;*/
    background-size: contain;
    background-position: center;
}


/* 台番号 */
.bl_playHeader_slotNumber {
    color: #fff;
    font-size: 8px;
    font-weight: 500;
    width: 100%;
    padding: 5px 0 6px;
    border: 2px solid #DF0012;
    background : linear-gradient(0deg, rgba(223, 0, 18, 1) 50%, rgba(228, 20, 37, 1) 50%, rgba(230, 28, 44, 1) 50%);
    border-radius: 13px / 11px;
    text-shadow: 0 1.5px 0 #8f0000;
    margin-right: 5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 auto 5px;
}

.bl_playHeader_slotNumber span {
    display: block;
    font-size: 14px;
    font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    font-weight: bold;
}


/* 数字 */
.bl_numbers {
    font-size: 0;
}

.bl_numbers_ttl {
    color: #fff;
    font-weight: bold;
    font-size: 12px;
    text-align: center;
    margin-bottom: 10px;
}

.bl_number {
    display: inline-block;
    margin-right: 6px;
}

.bl_number:last-child {
    margin-right: 0;
}

.bl_number img {
    width: 15px;

}

/* 機種情報 */
.bl_playHeader_q {
    font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    font-weight: bold;
}

.bl_playHeader_q_icon,
.bl_playHeader_q_txt {
    display: block;
}

.bl_playHeader_q_icon {
    margin-bottom: 2px;
}

.bl_playHeader_q_icon img {
    width: 18px;
    height: 18px;
}

.bl_playHeader_q_txt {
    font-size: 8px;
    color: #fff;
}


/*----------------------------------
プレイ画面コンテンツ
------------------------------------*/
.bl_playCont {
    /*background: url(/image/bg_play_screen.jpg)no-repeat;*/
    /*background-size: cover;*/
    /*background-position: center;*/
    background-color: black;
    height: calc(100vh - 78px);
    margin-top: 78px;
}


/*----------------------------------
プレイ画面フッター
------------------------------------*/
.bl_playFooter {
    background : rgba(255, 255, 255, 0.75);
    padding: 3px;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
}

.bl_currentPt {
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-weight: bold;
  text-align: center;
  margin-bottom: 3px;
}

.bl_currentPt_label {
  font-size: 16px;
  display: flex;
  align-items: baseline;
  padding: 5px 8px 6px;
  border: 2px solid #b3b3b3;
  border-radius: 8px;
  background: #fff;
}

.bl_currentPt_check {
  width: 18px;
}

.bl_currentPt_num {
  width: 100%;
}

.bl_currentPt_unit {
  font-size: 12px;
  color: #f7931e;
}

.bl_currentPt_check {
  display: none;
}

/* チェックマーク */
.bl_currentPt_check_icon {
  display: inline-block;
  min-width: 18px;
  height: 18px;
  border-radius: 90%;
  border: 1px solid #4d4d4d;
  align-self: center;
  position: relative;
}

.bl_currentPt_check_icon::after {
  content: "";
  display: block;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  width: 10px;
  height: 6px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  position: absolute;
  left: 4px;
  top: 3.5px;
  opacity: 0;
}

/* ラジオボタンがアクティブの時  */
.bl_currentPt_check:checked + .bl_currentPt_label {
  border-color: #ffb56c;
  background: #f7931e;
}

.bl_currentPt_check:checked + .bl_currentPt_label .bl_currentPt_check_icon {
  border-color: #29af2d;
  background: #29af2d;
}

.bl_currentPt_check:checked + .bl_currentPt_label .bl_currentPt_check_icon::after {
  opacity: 1;
}

.bl_currentPt_check:checked + .bl_currentPt_label,
.bl_currentPt_check:checked + .bl_currentPt_label .bl_currentPt_unit {
  color: #fff;
}

@media (max-width: 359px) {
  /* 1559行目付近の記述は不要のため削除してください。*/
  .bl_currentPt_label {
    font-size: 12px;
  }
}


/* auto スタートボタン */
.bl_playFooter_autoBtn {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
}

.bl_playFooter_autoBtn img {
    width: 100%;
}

/* 倍率 play 情報 */
.bl_playFooter_data {
  background : linear-gradient(0deg, rgba(203, 209, 214, 1) 0%, rgba(186, 192, 197, 1) 20.15%, rgba(170, 177, 181, 1) 43.26%, rgba(183, 190, 194, 1) 52.06%, rgba(227, 234, 237, 1) 83.86%, rgba(244, 251, 254, 1) 100%);
  border-style : solid;
  border-color : rgba(145, 145, 145, 1);
  border-width : 2px;
  border-radius : 10px;
  font-weight: bold;
  padding: 6px 5px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.bl_playFooter_data_txt1 {
    font-size: 12px;
    vertical-align: bottom;
    margin-right: 5px;
    align-self: flex-end;
}

.bl_playFooter_data_txt2 img {
    height: 20px;
}

.bl_playFooter_data_num {
    font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    font-size: 15px;
    color:#ffff00;
    background: #000;
    border-radius: 5px;
    width: 25px;
    height: 25px;
    line-height: 25px;
    text-align: center;
    margin-right: 3px;
    letter-spacing: -.02em;
}

/* 倍率ボタン */
.bl_modeBtn_unit {
    overflow: hidden;
}

.bl_modeBtn {
    float: left;
    width: calc(100% / 3 - 2px);
    margin-right: 3px;
}

.bl_modeBtn:last-child {
    margin-right: 0;
}

.bl_modeBtn img {
    width: 100%;
}

/* 一回スタートボタン */
.bl_oneStart {
    width: 100%;
}

.bl_oneStart img {
    width: 100%;
    height: auto;
}

.bl_playFooter_inner {
    display: flex;
}

.bl_playFooter_left {
    flex-shrink: 1;
    flex-grow: 0;
    flex-basis: 35%;
    max-width:35%;
    align-self: center;
}

.bl_playFooter_center {
    flex-shrink: 1;
    flex-grow: 0;
    flex-basis: 30%;
    max-width: 30%;
}

.bl_playFooter_right {
    flex-shrink: 1;
    flex-grow: 0;
    flex-basis: 33%;
    max-width: 33%;
    align-self: center;
}

.bl_playFooter_left,
.bl_playFooter_center {
    margin-right: 1%;
}

/*----------------------------------
プレイ画面フッター 右側 Top
------------------------------------*/
.bl_playFooter_right_top {
    margin-bottom: 3px;
}

/*----------------------------------
プレイ画面フッター 右側 middle
------------------------------------*/
.bl_playFooter_right_middle {
    margin-bottom: 3px;
}

/*----------------------------------
プレイ画面フッター 右側 bottom
------------------------------------*/
.bl_playFooter_right_bottom {
    display: flex;
    align-items: center;
}

.bl_playFooter_right_bottom_boxL {
    flex-shrink: 1;
    flex-grow: 0;
    flex-basis: 69%;
    max-width: 69%;
    margin-right: 3%;
}

.bl_playFooter_right_bottom_boxR {
    flex-shrink: 1;
    flex-grow: 0;
    flex-basis: 28%;
    max-width: 28%;
}

/* ---------------------------------
観覧人数
---------------------------------*/
.bl_views {
    font-weight: bold;
    border-style : Solid;
    border-color : #919191;
    background: #fff;
    border-width : 2px;
    border-radius : 10px;
    /* padding: 9px 11px 8px 7px; */
    padding: 5px 11px 5px 7px;
    display: flex;
    align-items: center;
}

.bl_views_ttl {
    font-size: 9px;
    margin-right: auto;
}

/*----------------------------------
プレイ画面フッター 左側
------------------------------------*/
.bl_playFooter_left_top {
    margin-bottom: 5px;
}

.bl_playFooter_left_bottom {
    display: flex;
}

.bl_playFooter_left_bottom_boxL,
.bl_playFooter_left_bottom_boxR {
    flex-shrink: 1;
    flex-grow: 0;
    flex-basis: 48.5%;
    max-width: 48.5%;
}

.bl_playFooter_left_bottom_boxL {
    margin-right: 3%;
}

.bl_playFooter_left_bottom button {
    display: block;
    height: 100%;
    width: 100%;
}

.bl_playFooter_left_bottom button img {
    height: 100%;
    width: 100%;
}

/*-----------------------------------
待機画面フッター user情報
------------------------------------*/
.bl_userInfo {
    background: rgba(0,0,0,.8);
    color: #fff;
    font-weight: bold;
    padding: 6px 5px 8px;
    border-radius: 10px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bl_userInfo_ttl {
    font-size: 10px;
    margin-bottom: 16px;
    text-align: center;
}

.bl_userInfo_item_head {
    font-size: 5px;
    margin-right: auto;
}

.bl_userInfo_item_head img {
    height: 6px;
}

.bl_userInfo_item_body {
    font-size: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex-basis: 58px;
    text-align:right;
}

@media (min-width: 1024px) and (orientation: landscape) {
    .bl_userInfo_item_body {
        overflow: visible;
    }
}

.bl_userInfo_nickname_body {
    font-size: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align:right;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

/* 獲得point */
.bl_userInfo_acquire .bl_userInfo_item_body {
    font-size: 10px;
    font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

.bl_userInfo_txt {
    font-size: 8px;
    margin-left: 2px;
}

.bl_userInfo_item {
    border-bottom: 1px solid #fff;
    padding-bottom: 6px;
    margin-bottom: 10px;
}

.bl_userInfo_item:last-child {
    margin-bottom: 0;
}

/*-----------------------------------
待機画面フッター 右側
------------------------------------*/
.bl_userInfo_item {
    display: flex;
    align-items: baseline;
}

/* ---------------------------------
大当たり確率
---------------------------------*/
.bl_playFooter_rate {
    background: #000;
    font-weight: bold;
    padding: 0px 2px 2px;
    border-radius: 10px;
}

.bl_playFooter_rate_head {
    font-size: 8px;
    color: #fff;
    margin-bottom: 6px;
    line-height: 1;
    padding-left: 4px;
}

.bl_playFooter_rate_body {
    background: #fff;
    display: flex;
    align-items: center;
    border-radius: 7px;
    padding: 4px 7px 4px 4.5px;
}

.bl_playFooter_rate_body_ttl {
    font-size: 8px;
    margin-right: auto;
}

.bl_playFooter_rate_numerator {
    font-size: 10px;
    vertical-align: top;
}

.bl_playFooter_rate_denominator {
    font-size: 18px;
}

/* 流れる文字 */
#js_flowTxt_wrapper {
    overflow: hidden;
}

#js_flowTxt {
    white-space:nowrap;
    display : inline-block;
}

#js_flowTxt.is_active {
    padding-left: 100%;
    animation : scrollSample01 8s linear infinite;
}

@keyframes scrollSample01{
    0% { transform: translateX(0)}
    100% { transform: translateX(-100%)}
}


/* ---------------------------------
予約状況
---------------------------------*/
.bl_reservation {
    border-style : Solid;
    border-color : #FF0000;
    border-width : 2px;
    border-radius : 10px;
    font-weight: bold;
    display: flex;
    align-items: center;
    padding: 6px 9px 6px 7px;
    background: #fff;
}

.bl_reservation_ttl {
    font-size: 9px;
    margin-right: auto;
}

.bl_reservation_numerator {
    font-size: 18px;
}

.bl_reservation_denominator {
    font-size: 13px;
}

/* ---------------------------------
モーダル ポイント購入完了
---------------------------------*/
.bl_pComplete {
    text-align: center;
    padding: 22px 10px 20px;
}
.bl_pComplete1 {
    text-align: center;
    padding: 10px 25px 0px;
}

.bl_pComplete_name {
    margin-bottom: 25px;
}

.bl_pComplete_pt {
    margin-bottom: 15px;
}

.bl_pComplete_pt span {
    font-size: 13px;
    color: #f7931e;
    margin-left: 10px;
}



/* ---------------------------------
Nav
---------------------------------*/
.bl_modelInfo,
.bl_nav_wrapper {
    font-weight: bold;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 80%;
    background: #fff;
    z-index: -9999;
    border-radius: 10px;
    transition: .2s;
    opacity: 0;
}

.bl_overlay {
    position: fixed;
    top: 0;
    left: 0%;
    z-index: -9999;
    bottom: 0;
    right: 0;
    background : rgba(0, 0, 0, 0.7);
    transition: .3s;
    opacity: 0;
}

.bl_modelInfo.is_active,
.bl_nav_wrapper.is_active {
    z-index: 9999;
    opacity: 1;
}

.bl_overlay.is_active {
    z-index: 8888;
    opacity: 1;
}


.bl_nav {
    text-align: center;
    margin-top: 17px;
}

.bl_nav_item a {
    display: block;
    padding: 17px 12px;
    border-bottom: 1px solid #b5b5b5;
    margin: 0 12px;
}

@media (min-width: 1024px) and (orientation: landscape) {
    .bl_nav_item a {
        font-size: 20px;
    }
}

.bl_navBtn_close {
    display: block;
    width: 100%;
    text-align: center;
    margin: 18px 0;
}

.bl_navBtn_close img {
    max-width: 200px;
    width: 100%;
}

/* ---------------------------------
機種情報モーダル
---------------------------------*/
.bl_slotInfo_imgWrapper {
    text-align: center;
    padding: 0 10px;
}

.bl_slotInfo_imgWrapper img {
    max-width: 100%;
}

@media screen and (min-width: 1024px) and (orientation: landscape) {
    .bl_slotInfo_imgWrapper img {
      max-width: 95%;
    }
  }

/* --------------------------------
point購入モーダル
---------------------------------*/
.un_payment_model {
    height: 350px;
    overflow-y: scroll;
    padding: 15px;
}

.un_payment_model .un_payment_promotion_head {
    padding: 8px 10px;
}

.un_payment_model .un_payment_promotion_purchase {
    font-size: 13px;
}

.un_payment_model .un_payment_lv2Heading {
    font-size: 13.5px;
    padding-bottom: 8px;
    margin-bottom: 10px;
}

.un_payment_model .un_payment_promotion_ttl {
    font-size: 13.45px;
}

/* --------------------------------
終了モーダル
---------------------------------*/
.bl_endModal {
    padding: 60px 20px 22px;
}
.bl_endModal_txt {
    text-align: center;
    margin-bottom: 60px;
}

.bl_endModal_btnUnit {
    overflow: hidden;
}

.bl_endModal_btn {
    float: left;
    width: calc(50% - 12px);
    margin-right: 24px;
}

.bl_endModal_btn:nth-child(2){
    margin-right: 0;
}

.bl_endModal_btn img {
    width: 100%;
}

/* --------------------------------
倍率モーダル
---------------------------------*/
.bl_model_mode {
    padding: 60px 20px 22px;
}

.bl_model_mode_btnUnit {
    overflow: hidden;
}

.bl_model_mode_btn {
    float: left;
    width: calc(50% - 12px);
    margin-right: 24px;
}

.bl_model_mode_btn:nth-child(2){
    margin-right: 0;
}

.bl_model_mode_btn img {
    width: 100%;
}

.bl_model_mode p {
    margin-bottom: 60px;
    text-align: center;
}

/* --------------------------------
グラフモーダル
---------------------------------*/
.un_graphArea {
    padding: 0 15px;
}

.un_graph {
    background: #000 url(/image/bg-graph.png)no-repeat;
    background-position: center;
    background-size: contain;
    height: 187px;
    width: 100%;
}

.un_graph_btnUnit {
    display: flex;
    justify-content: space-between;
    margin-top: 45px;
}

.un_graph_btn {
    display: block;
    border: 1px solid #969696;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 1;
    flex-grow: 0;
    flex-basis: 31%;
    text-align: center;
    border-radius: 5px;
    padding: 9px;
    line-height: 1;
    letter-spacing: .05em;
}

.un_graph_btn.is_active {
    background: #0fa513;
    border: 1px solid #057f05;
    color: #fff;
}

/* --------------------------------
ニュース　アーカイブ
---------------------------------*/
.bl_newsMedia-unit {
    overflow-y: scroll;
    height: 300px;
    padding: 0 10px 30px;
}

@media screen and (min-width: 1024px) and (orientation: landscape) {
    .bl_newsMedia-unit {
    height: 450px;
    }
  }

.bl_newsMedia_in {
    display: flex;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #d3d3d3;
}

.bl_newsMedia_thumb {
    flex-shrink: 0;
    flex-grow: 0;
    flex-basis: 100px;
    max-width: 100px;
}

@media screen and (min-width: 1024px) and (orientation: landscape) {
    .bl_newsMedia_thumb {
      flex-basis: 200px;
      max-width: 200px;
    }
  }

.bl_newsMedia_thumb img {
    width: 100%;
}

.bl_newsMedia_body {
    padding-left: 12px;
}

.bl_newsMedia_date {
    margin-bottom: 6px;
    font-size: 8px;
}

@media screen and (min-width: 1024px) and (orientation: landscape) {
    .bl_newsMedia_date {
      font-size: 12px;
    }
  }

.bl_newsMedia_date,
.bl_newsMedia_ttl {
    font-weight: 700;
}

.bl_newsMedia_ttl {
    font-size: 10px;
}

.bl_newsMedia_catWrapper {
    margin-bottom: 0;
}

.bl_newsMedia_cat {
    display: inline-block;
    background: #df0012;
    color: #fff;
    font-size: 8px;
    font-weight: 500;
    margin-bottom: 10px;
    padding: 2px 1em;
}

@media screen and (min-width: 1024px) and (orientation: landscape) {
    .bl_newsMedia_cat {
      font-size: 12px;
    }
  }

.bl_newsMedia_cat.bl_newsMedia_cat--blue {
    background: #05309b;
}

.bl_newsMedia_cat.bl_newsMedia_cat--orange {
    background: #ff7709;
}

/* --------------------------------
ニュース
---------------------------------*/
.bl_postWrapper {
    height: 300px;
    overflow-y: scroll;
    padding: 16px 10px;
    -webkit-overflow-scrolling: touch; /* iOS の慣性スクロール */
}

@media screen and (min-width: 1024px) and (orientation: landscape) {
    .bl_postWrapper {
      height: 450px;
    }
  }

.bl_post_thumb {
    margin-bottom: 16px;
}

.bl_post_thumb img {
    width: 100%;
}

.link {
    color: #0000EE;
    text-decoration:underline;
}

.bl_postContents_heading {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.56;
}

.bl_postContents h2,
.bl_postContents h3,
.bl_postContents h4,
.bl_postContents h5 {
    margin: 0 0 15px 0;
}

.bl_postContents p {
    font-size: 10px;
    line-height: 1.75;
    margin: 0 0 1em 0;
}

@media screen and (min-width: 1024px) and (orientation: landscape) {
    .bl_postContents p {
      font-size: 18px !important;
    }
  }

.bl_post_date {
    font-size: 10px;
    font-weight: 700;
    margin-right: 12px;
    vertical-align: middle;
}

.bl_post_cat {
    font-size: 8px;
    font-weight: 500;
    background: #df0012;
    color: #fff;
    padding: 2px 1em;
}

.bl_post_meta {
    margin-bottom: 12px;
}

/* --------------------------------
メッセージ
---------------------------------*/
.bl_model_mes {
    padding: 50px 0 25px;
    text-align: center;
    font-weight: 700;
}

.bl_model_mes p {
    font-size: 16px;
}

/* --------------------------------
初回起動ポップアップ
---------------------------------*/
.un_serviceModel {
    height: 300px;
    overflow-y: scroll;
    padding: 15px 10px 0;
}

.un_serviceModel_slider .swiper-slide img {
    width: 100%;
}

.un_serviceModel_body {
    padding: 20px 0 0;
}

.un_serviceModel_body p {
    font-size: 10px;
    font-weight: 400;
    line-height: 1.75;
}

/* --------------------------------
アカウント情報変更
---------------------------------*/
.bl_acCh_model {
    padding: 15px 10px 0;
}

.bl_acCh_model_item {
    margin-bottom: 30px;
}

.bl_acCh_model_item_ttl {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 10px;
}

.bl_acCh_model_item_field {
    display: block;
    border: 2px solid #d3d3d3;
    width: 100%;
    border-radius: 6px;
    padding: 0 15px;
    margin-bottom: 20px;
    height: 45px;
    line-height: 45px;
    margin-bottom: 0;
    font-size: 16px;
    font-weight: 500;
}

@media screen and (max-width: 359px) {
    .bl_numbers img {
        width: 10px;
    }
    .bl_numbers_ttl {
        font-size: 10px;
    }

    .bl_currentPt_num {
        font-size: 16px;
    }

}

/* ---------------------------------
ポップアップ用css
---------------------------------*/
.bl_model {
    font-weight: bold;
}

.bl_model_wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -9999;
    opacity: 0;
}

.bl_model_wrapper.is_active {
    opacity: 1;
    z-index: 9999;
}

.bl_model_wrapper.is_battle_active {
  opacity: 1;
  z-index: 11;
  pointer-events: none;
}

.bl_model_wrapper.is_comeback_active {
  display: block;
  opacity: 1;
  z-index: 10000;
}

.bl_graph_log {
    display: none !important;
}

.bl_graph_log.is_active {
    display: inline-flex !important;
}

.bl_model_overlay {
    background: rgba(0, 0, 0, .6);
    backdrop-filter: brightness(0.8);
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 9999;
}

.bl_model {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 86%;
    background: #fff;
    border-radius: 10px;
    z-index: 10000;
    max-width: 540px;
}

.bl_model_ballon {
  position: fixed;
  top: 0;
  right: 0;
  transform: none;
  width: 60%;
  background: #fff;
  border-radius: 10px;
  z-index: 12;
  border: solid 2px red;
  text-align: center;
  width: 250px;
  font-weight: bold;
  font-size: 12px;
}

@media screen and (min-width: 1024px) and (orientation: landscape) {
  .bl_model_ballon {
      border: 4px solid red;
      width: 600px;
      font-size: 22px;
  }
}

.bl_model_popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 86%;
  background: #fff;
  border-radius: 10px;
  z-index: 10000;
  border: solid 2px red;
  text-align: center;
  max-width: 350px;
  font-weight: bold;
}

@media screen and (min-width: 1024px) and (orientation: landscape) {
  .bl_model_popup {
      max-width: 600px;
      font-size: 22px;
  }
}

.bl_model button {
    outline: none;
}

.bl_model_head {
    background: #df0012;
    color: #fff;
    padding: 15px;
    border-radius: 10px 10px 0 0;
    text-align: center;
    font-size: 19px;
}

@media screen and (min-width: 1024px) and (orientation: landscape) {
    .bl_model_head {
      font-size: 22px;
    }
    .bl_model_closeBtn {
        max-width: 180px;
    }

    .bl_up_model_head {
        font-size: 22px;
    }
    .bl_up_model_closeBtn {
        max-width: 180px;
    }
  }

.bl_model_closeBtn {
    display: block;
    text-align: center;
    max-width: 150px;
    width: 100%;
    margin: 18px auto;
}

.bl_model_closeBtn img {
    max-width: 100%;
    height: auto;
}

.bl_up_model_closeBtn {
    display: block;
    text-align: center;
    max-width: 150px;
    width: 100%;
    margin: 18px auto;
}

.bl_up_model_closeBtn img {
    max-width: 100%;
    height: auto;
}

@media all and (-ms-high-contrast: none) {
    .bl_homeFooter_pointArea {
        justify-content: flex-start;
    }

    .bl_slotUnit__col2 {
        display: block;
        overflow: hidden;
    }

    .bl_slotUnit__col2 .bl_slot {
        float: left;
        max-width: calc(50% - 7px);
    }
}

@media screen and (min-width: 1024px) and (orientation: landscape) {
    .bl_model {
        max-width: 700px;
    }

    .bl_model_up {
        max-width: 700px;
    }
  }

/*----------------------------------
home-menu-setting.htmlで使用
------------------------------------*/
.un_menuSet_item {
    font-size: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.un_menuSet_item_ttl {
    font-size: 15px;
    margin-bottom: 0;
}

.un_menuSet_selectWrapper {
    position: relative;
}

.un_menuSet_selectWrapper::before {
    content: "";
    border-width: 8px 6px 0 6px;
    border-color: #d3d3d3 transparent transparent transparent;
    border-style: solid;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.un_menuSet_selectWrapper::after {
    content: "";
    height: 70%;
    width: 2px;
    background: #d3d3d3;
    position: absolute;
    right: 32px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.un_menuSet_select {
    border: 2px solid #d3d3d3;
    width: 100%;
    border-radius: 5px;
    padding: 10px;
    line-height: 1;
    padding-right: 40px;
    text-align: center;
}

.un_menuSet_item_l {
    flex-shrink: 0;
    flex-grow: 0;
    flex-basis: 96px;
    max-width: 96px;
}

.un_menuSet_item_r {
    flex-shrink: 1;
    flex-grow: 1;
}

@media screen and (min-width: 1024px) and (orientation: landscape) {
    .un_menuSet_item_ttl {
        font-size: 24px;
    }
  }


/*----------------------------------
btn
------------------------------------*/
.un_menuSet_toggleSwitch {
    position: relative;
    text-align: right;
}

.un_menuSet_toggleSwitch input {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    opacity: 0;
    cursor: pointer;
}

.un_menuSet_toggleSwitch label {
    height: 15px;
    width: 43px;
    background: #bbb;
    position: relative;
    display: inline-block;
    border-radius: 46px;
    transition: 0.4s;
}

.un_menuSet_toggleSwitch label::after {
    content: '';
    position: absolute;
    border-radius: 100%;
    left: 0;
    z-index: 2;
    background: #ebebeb;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    transition: 0.4s;
    top: -3px;
    width: 22px;
    height: 22px;
}

.un_menuSet_toggleSwitch input:checked + label {
    background: rgba(255,0,0,.3);
}

.un_menuSet_toggleSwitch input:checked + label::after {
    background: rgba(255,0,0,1);
    left: 22px;
}
.input-range[type="range"]:focus, .input-range[type="range"]:active {
    outline: none;
}
.input-range[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
    position: relative;
    width: 22px;
    height: 22px;
    display: block;
    background-color: rgba(255,0,0,1);
    border-radius: 50%;
    -webkit-border-radius: 50%;
}
.input-range[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    background-color: #eaeaea;
    height: 2px;
    width: 100%;
    border-radius: 6px;
}

/*--------------------------------
present
---------------------------------*/
.bl_presentTab_nav {
    border: 2px solid #333;
    border-radius: 8px;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.bl_presentTab_nav li {
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 1;
    flex-grow: 1;
    flex-basis: 50%;
    max-width: 50%;
    text-align: center;
    padding: 10px;
    cursor: pointer;
    transition: background-color 0.3s;
    letter-spacing: .06em;
    line-height: 1;
}

.bl_presentTab_nav li:first-child {
    border-radius: 3px 0 0 3px;
}

.bl_presentTab_nav li:last-child {
    border-radius: 0 3px 3px 0;
}

.bl_presentTab_list {
    display: none;
}

.bl_presentTab_list li {
    padding: 12px;
    box-shadow: 0 0 8px rgba(0, 0, 0, .3);
    margin-bottom: 28px;
}

/* acitve */
.bl_presentTab_nav li.is_active {
    background: #333;
    color: #fff;
}

.bl_presentTab_list.is_active {
    display: block;
    -webkit-animation-duration: .7s;
    animation-duration: .7s;
    -webkit-animation-name: fade-in;
    animation-name: fade-in;
}

.bl_presentTab_item_head {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
}

/* ボタン */
.bl_presentTab_item_btn {
    width: 43px;
    height: 43px;
    background: #e50012;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-radius: 90px;
    line-height: 1;
}

.bl_presentTab_item_btn img {
    width: 13px;
}

.bl_presentTab_item_btn_txt {
    display: block;
    font-size: 8px;
    font-weight: 500;
    color: #fff;
    margin-top: 3px;
}

/* ボタン受取済み */
.bl_presentTab_item_btn--received {
    background: #595959;

}





.bl_presentTab_item_body {
    display: flex;
    align-items: center;
}

.bl_presentTab_item_icon {
    flex-shrink: 0;
    flex-grow: 0;
    flex-basis: 65px;
    max-width: 65px;
}

.bl_presentTab_item_icon img {
    max-width: 100%;
}

/* 右側 */
.bl_presentTab_item_txtArea {
    padding-left: 15px;
    flex-shrink: 1;
    flex-grow: 1;
    flex-basis: auto;
}

/* 日付 */
.bl_presentTab_item_date {
    font-size: 10px;
    font-weight: 700;
    margin-bottom: 0;
    line-height: 1;
    padding-top: 10px;
}

/* タイトル */
.bl_presentTab_item_ttl {
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 8px;
}

/* 詳細 */
.bl_presentTab_item_txt {
    margin-bottom: 0;
    font-size: 8px;
    font-weight: 500;
    line-height: 1.75;
}

@media screen and (min-width: 1024px) and (orientation: landscape) {
    .bl_presentTab_item_date {
        font-size: 15px;
    }
    .bl_presentTab_item_ttl {
        font-size: 16px;
    }
    .bl_presentTab_item_txt {
        font-size: 14px;
    }
}
