/** ここから先はの点線。現在使ってないが、しばらく残しておく **/
.content-end-separator {
    position: relative;
    text-align: center;
    padding: 20px 0;
    margin:0;
  }
  
  .content-end-separator::before,
  .content-end-separator::after {
    content: '';
    position: absolute;
    top: 50%;
    width: calc(50% - 70px);
    height: 2px; /* 線の高さ */
    background-image: linear-gradient(to right, #a0a0a0 30%, rgba(255, 255, 255, 0) 0%);
    background-size: 6px 2px; /* ドットの幅と間隔を調整 */
    background-repeat: repeat-x; /* 水平方向に繰り返し */
    z-index: 0; /* 重なり順を調整 */
  }
  
  .content-end-separator::before {
    left: 0;
  }
  
  .content-end-separator::after {
    right: 0;
  }
  
  .content-end-text {
    display: inline-block;
    background-color: #fff;
    font-weight: 700!important;
    padding: 0 8px;
    margin: 0!important;
    position: relative;
    z-index: 1; /* 他の要素より上に表示 */
  }
  /** 点線ここまで　**/

  .restricted-content-message {
    text-align: center;
    color: #E60040;
    font-weight: bold;
  }
  
  .restricted-content-overlay {
    text-align: center;
    margin-top: 20px;
  }
  
  .subscribe-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
  }
  
  p.content-stats{
      color: #08131aa8;
      font-size: 75%;
      text-align: center;
  }

/* デフォルトのリストスタイル（丸点など）を削除 */
.restricted-content-overlay ul {
    list-style: none; /* デフォルトの箇条書きマークを非表示 */
    padding: 0; /* 内側の余白を削除 */
    margin: 0; /* 外側の余白を削除 */
}

/* リスト項目（li）の基本スタイル */
.restricted-content-overlay ul li {
    position: relative;
    text-align: center; /* テキストを中央揃えに */
    margin-bottom: 10px;
    line-height: 1.5;
}


/* カスタムチェックマーク（レ点）を中央揃え */
.restricted-content-overlay ul li::before {
    content: "✔";
    color: #ff9a16;
    font-weight: bold;
    position: relative; /* 相対位置で中央揃えに */
    display: inline-block; /* インラインブロックに変更 */
    margin-right: 8px; /* アイコンとテキストの間隔を設定 */
    font-size: 18px;
    vertical-align: middle; /* テキストとアイコンを中央揃え */
}
.transparent-text {
    position: relative;
    color: #333;
    text-align: center;
}

.transparent-text::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background: linear-gradient(
        rgba(255,255,255,0) 0%, 
        rgba(255,255,255,0.8) 50%, 
        #fff 100%
    );
    pointer-events: none;
}
  
  @media (max-width: 768px) {
    .content-end-separator::before,
    .content-end-separator::after {
      width: calc(50% - 50px);
    }
  }