/* 顧客通知*/

body{
  background: #F3F3F3;
}

/*::selection {
  background: #D60024;
  color: #fff;
}*/

/* 旧CSS打ち消し用 */ 
/* a{
  color: #535353;
}
a:hover{
  text-decoration: none;
  color: #232323;
  cursor: pointer;
}
 */

select, option,textarea {
  font-family: 'Hiragino Kaku Gothic Pro','ヒラギノ角ゴ Pro W3','メイリオ',Meiryo,'ＭＳ Ｐゴシック',sans-serif;
}
label{
  cursor: pointer;
}

a{
  color: #535353;
}
a:hover{
  text-decoration: none;
  color: #232323;
  cursor: pointer;
}

.fa-crown{
  color: #E0C000;
  font-size: 30px;
  margin: 5px;
}


h2{
  font-size: 18px;
  font-weight: bold;
  border-left: solid 8px #FED000;
  padding: 0 0 0 20px;
  margin: 0 0 10px 0;
  letter-spacing: 1.1px;
  display: flex;
  align-items: center;
  letter-spacing: 1.2;
}



/* Collection用ポップアップ設定 */
.closeBtn {
  left: 15px;
  z-index: 99999;
}

.popupTitle{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 0 0 45px;
  padding: 18px 18px 15px 0;
  border: none;
  height: 20px;
}
.popupContent {
  padding: 0;
}
label.closeBtn{
  display: block;
  width: 30px;
}

.popupMainArea{
  padding: 0;
}

/* 通知機能用CSS */

.notification-popup {
    position: relative;
    max-width: 565px;
    height: auto;
    border: 1px #dadada solid;
    filter: drop-shadow(0 1px 1px rgba(0,0,0,0.1));
    box-sizing: border-box;
    overflow: visible;
}
    .notification-popup:before {
        content: "";
        position: absolute;
        top: -36px;
        left: 13%;
        margin-left: -15px;
        border: 25px solid transparent;
        border-bottom: 25px solid #FFF;
        z-index: 10001;
    }

    .notification-popup:after {
        content: "";
        position: absolute;
        top: -28px;
        left: 86px;
        margin-left: -17px;
        border: 14px solid transparent;
        border-bottom: 14px solid #dadada;
        z-index: 10000;
    }
   
.popupOverlay.notification {
    background: transparent;
}
.popupTitle.notification {
    padding: 23px 18px 23px 20px;
    margin: 0;
    border-bottom: 1px solid #dcdcdc;
}
.notification-inner {
    padding: 15px 20px 15px 5px;
    border-bottom: 1px solid #dcdcdc;
}
    .notification-inner:last-of-type {
        border-bottom: none;
    }
    .notification-one {
        display: flex;
        align-items: center;
    }
    .notification-one .ntf-msg {
        line-height: normal;
    }
        .notification-one .ntf-msg a {
            display: inline-block;
            /*10文字以上(仮)は「…」表示*/
            font-size: 1.1em;
            max-width: calc(1.1em * 10);
            color: #D60024;
            font-weight: bold;
            white-space: nowrap;
            text-overflow: ellipsis;
            overflow: hidden;
            line-height: 1.5;
            margin: 0 0 -6px 0;
        }
            .notification-one .ntf-msg a:hover {
                text-decoration: underline;
            }
        .notification-one .ntf-msg a:hover {
            text-decoration: underline;
        }

    .notification-one .ntf-date {
        font-size: .9em;
        color: #a0a0a0;
        padding: 3px 0 0 0;
    }
.read-more {
    color: #436597;
    display: flex;
    justify-content: center;
    align-items: center;
    letter-spacing: 1px;
    padding: 30px;
    cursor: pointer;
}
.read-more:hover{
    opacity: .5;
}
.read-more img {
    display: inline-block;
    transform: rotate(90deg);
    vertical-align: middle;
    width: 9px;
    margin: 0 0 0 15px;
}

.user-icon {
    margin: 0 20px 0 0;
}
    .user-icon img {
        border-radius: 50%;
        max-width: 60px;
    }

.notice-link {
    background-image: none !important;
    padding: 0px !important;
    color: #D60024 !important;
    font-weight: bold !important;
    cursor: pointer !important;
}

#NotReadCount {
    margin-left: 5px;
    height: 15px;
    width: 15px;
    display: inline-block;
    border-radius: 50%;
    background: #D60024;
    color: white;
    font-size: 8px;
    text-align: center;
    line-height: 15px;
}

.notification-inner:hover {
    background: #DDD;
    cursor: pointer;
}

.notification-inner:active {
    background: #EEEEEE;
    cursor: pointer;
}