@charset "UTF-8";
/*********************************************
機能名     : 有料送信共通CSS (会員向け)
ページURL  : 会員向け有料メディアページ
作成者     : システム管理
*********************************************/

.sub-menu-list-item.is_album .sub-menu-list-item__link {
  box-shadow: 0 -2px 0 #ee8aa4 inset;
  font-weight: bold;
  color: #ee8aa4;
}

/* 基本レイアウト */
.paid-media-container {
    padding: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    margin-top: 20px;
    background: #fff;
    max-width: 1400px;
    width: 100%;
}

/* ローディング表示 */
.loading-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.loading-overlay.show {
    display: flex;
}

.loading-content {
    text-align: center;
}

.loading-content img {
    width: 32px;
    height: 32px;
}

/* メディアタイプアイコン */
.media-type-icon {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 24px;
    height: 24px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 10;
    pointer-events: none;
}

.media-type-icon.image {
    background-image: url('https://assets.angel-live.com/paid_media/member/icon-image-border.png');
}

.media-type-icon.video {
    background-image: url('https://assets.angel-live.com/paid_media/member/icon-video-fill.png');
}