/* ヘッダーを隠す
.header__wrap{

display: none;

} */

/* 1. 元のテキストを強制的にサイズ0にする */
.event__event-top {
  font-size: 0 !important;
}

/* 2. 新しいテキストを表示する */
.event__event-top::before {
  content: "トップに戻る";
  font-size: 16px !important; /* 必要なサイズを指定してください */
  color: #333; /* 文字色も指定しておくと安心です */
}

/*チケット購入画面の「チケット」を削除*/

.detail__ticket__label {
    display: none!important;
}


/*コンテンツ名アンダーラインの色変更*/
.widget-title__border {
background-color:#00958B !important;
}
 
.widget-header__border {

        border-color:#00958B !important;

    }


/*「もっとみる」ボタンの表示を消す*/

 .widget-header__button {

        display:none !important;

   }


/*チケットの「利用可能」の表示を消す*/

.ticket-card__status.active[data-v-7cec809c] {
    /* background-color: #4cd964; */
    display: none;
}

