.alert {
  font-size: 16px;
  border: 2px solid #ff0000;
  border-radius: 4px;
  padding: 1rem;
  width: 98%;
  margin: 0 auto;
  box-sizing: border-box;
}

.button-link {
  display: inline-block;
  background-color: #70b539;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin: 10px 0;
  transition: background-color 0.3s;
}

.button-link:hover {
  background-color: #5a9a2e;
  text-decoration: none;
  color: white;
}

.streaming-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 15px 0;
}

.streaming-button {
  display: inline-block;
  background-color: #333;
  color: white;
  padding: 6px 12px;
  border-radius: 3px;
  text-decoration: none;
  font-size: 12px;
  font-weight: bold;
  transition: all 0.3s ease;
  border: 1px solid #555;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.streaming-button:hover {
  background-color: #555;
  transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(0,0,0,0.3);
  text-decoration: none;
  color: white;
}

/* News Page Title Styles */
/* 共通のページタイトルスタイルは /common/css/style.css の .page-title を使用してください */

/*------------------------------------------------------
NEWS (PC)
------------------------------------------------------*/
.news_left {
  width: 75%;
  margin: 0px 0 30px;
}

.news_left .news_table {
  width: 100%;
}

.news_left .news_table tr td {
  padding-bottom: 0;
}

.news_left .news_table tr td.news-item {
  padding-bottom: 0;
  padding-top: 0;
}

.news-divider {
  border: none;
  border-top: 1px solid #e5e5e5;
  margin: 2rem 0;
  padding: 0;
}

.news_left .news_table tr:last-child td.news-item {
  padding-bottom: 2rem;
}

.news_left .news_table tr td span.songtxt {
  margin: 0 0 0 18px;
  font-size: 1em;
  line-height: 1.4em;
}

.news_left .cdtitle {
  margin-bottom: 10px;
  padding-bottom: 0;
  padding-left: 5px;
  font-size: 16px;
  font-weight: bold;
  border-bottom: none;
  color: #000;
}

.news_left .cdtitle span {
  font-family: 'Quicksand', sans-serif;
  font-size: 14px;
  display: inline-block;
  position: relative;
  top: -0.1rem;
  padding: 0.3rem 0.6rem 0.3rem 0.6rem;
  line-height: 1;
  margin-right: 0.7rem;
}

.news_left .cdtitle .category-badge {
  background-color: #000;
  color: #FFF;
  border-radius: 0.4em;
}

.news_left .cdtitle .subcategory-badge {
  background-color: #FFF;
  color: #000;
  border: 1px solid #000;
  border-radius: 0.4em;
}

.news_left .cdtitle .date-display {
  color: #000;
  font-size: 12px;
  margin-left: -0.7rem;
}

.news_left .txtBloc {
  margin: 0 10px 0 10px;
}

.news_left .txtBloc .ttl {
  font-size: 15px;
  line-height: 1.7;
  /* margin-bottom: 8px; */
  color: #000;
}

.news_left .txtBloc .ttl.event-title {
  font-size: 16px;
  font-weight: bold;
  margin-top: 5px;
  color: #000;
}

.news_left .txtBloc .live-date {
  font-size: 15px;
  margin-bottom: 8px;
  margin-top: 5px;
  color: #000;
}

.news_left .txtBloc .live-date-venue {
  font-size: 14px;
  margin-bottom: 8px;
  color: #000;
}

.news_left .txtBloc .live-date-venue .live-date-text {
  color: #000;
  font-weight: 600;
  margin-right: 0.5em;
}

.news_left .txtBloc .live-date-venue .venue-text {
  color: #000;
}

.news_left .txtBloc .live-date-venue .venue-text {
  color: #000;
}

.news_left .txtBloc .ttl.venue {
  margin-top: 5px;
  color: #000;
}

.news_left .txtBloc .ttl a {
  font-size: 15px;
  line-height: 1.7;
  color: #000;
}

.news_left .txtBloc .txt,
.news_left .txtBloc .txt a {
  margin-top: 0;
  font-size: 13px;
  line-height: 1.7em;
  color: #000;
}

/* 記事内のすべてのリンクにスタイルを適用 */
.news_left .txtBloc a {
  color: #000;
  text-decoration: underline;
  transition: all 0.3s ease;
}

.news_left .txtBloc a:hover {
  color: #333;
  text-decoration: underline;
  background-color: #f0f0f0;
}
.news-body {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.news-thumb {
  flex-shrink: 0;
  width: 250px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}
.news-thumb::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 8px;
  width: 24px;
  height: 24px;
  border-left: 2px solid #fff;
  border-top: 2px solid #fff;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 1;
  filter: drop-shadow(0 0 2px rgba(0, 0, 0, 0.5));
}
.news-thumb::after {
  content: "";
  position: absolute;
  bottom: 8px;
  right: 8px;
  width: 24px;
  height: 24px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  filter: drop-shadow(0 0 2px rgba(0, 0, 0, 0.5));
}
.news-thumb:hover::before,
.news-thumb:hover::after {
  opacity: 0.9;
}
.news-thumb a {
  display: block;
  border-radius: 8px;
  overflow: hidden;
}
.news-thumb .newsimg,
.news-thumb img.newsimg {
  width: 100% !important;
  max-width: 250px;
  height: auto;
  max-height: 300px;
  object-fit: cover;
  display: block;
  border-radius: 8px;
}

span.complete {
  margin-top: 10px;
  font-size: 13px;
  line-height: 1.6em;
  background-image: url(/news/img/border_w_red.png);
  background-repeat: repeat-x;
  background-position: center;
}

span.thankyou {
  margin-top: 10px;
  font-size: 13px;
  line-height: 1.6em;
  color: #F00;
}

.news_right .page_ttl {
  width: 100%;
  max-width: 214px;
}

.news_right .spaceman {
  width: 100%;
  max-width: 190px;
}

.news_right img {
  width: 100%;
}

p.alert_txt {
  font-size: 12px;
  border-top: 1px dotted #CCC;
  border-bottom: 1px dotted #CCC;
}

.newsimg {
  width: 40%;
}

/*------------------------------------------------------
NEWS（アーカイブ）
------------------------------------------------------*/
.ttl_year {
  font-family: 'Quicksand', sans-serif;
  color: #fff;
  background-color: #ff0000;
  border-radius: 0.4em;
  color: #FFF;
  display: inline-block;
  padding: 0.3rem 0.6rem 0.3rem 0.6rem;
  line-height: 1;
  margin-bottom: 1rem;
}

.boxPastLive {
  border-bottom: 1px solid #e5e5e5;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  line-height: 2;
}

.boxPastLive strong {
  font-weight: bold;
  color: #CC3366;
}

/*------------------------------------------------------
NEWS (SP)
------------------------------------------------------*/
@media screen and (max-width: 896px) {
  #news .sp_title p {
    color: #0bf;
  }

  #news .wrap_area {
    display: block;
  }

  .news_left {
    width: 100%;
    margin-top: 0;
  }

  .news_right {
    width: 50%;
    margin-top: 0;
  }

  .news_left .cdtitle {
    font-size: 17px;
  }

  .news_left .cdtitle span {
    font-family: 'Quicksand', sans-serif;
    font-size: 13px;
    margin-bottom: 0.2rem;
  }

  .news_left .cdtitle .category-badge {
    background-color: #000;
    color: #FFF;
  }

  .news_left .cdtitle .subcategory-badge {
    background-color: #FFF;
    color: #000;
    border: 1px solid #000;
  }

  .news_left .txtBloc {
    margin: 0 10px 0 10px;
    font-size: 14px;
    line-height: 1.7em;
  }

  .news_left .txtBloc .ttl {
    margin-top: 10px;
    font-size: 15px;
    font-weight: bold;
    line-height: 1.5em;
    margin-bottom: 8px;
  }

  .news_left .txtBloc .ttl.event-title {
    font-size: 17px;
    font-weight: bold;
    margin-bottom: 0px;
    margin-top: 0px;
  }

  .news_left .txtBloc .live-date {
    font-size: 17px;
    margin-bottom: 8px;
    margin-top: 5px;
  }

  .news_left .txtBloc .live-date-venue {
    font-size: 17px;
    margin-bottom: 8px;
    margin-top: 5px;
  }

  .news_left .txtBloc .live-date-venue .live-date-text {
    display: block;
    margin-bottom: 0.3em;
  }

  .news_left .txtBloc .live-date-venue .venue-text {
    display: block;
  }

  .news-divider {
    margin: 1.5rem 0;
  }

  .news_left .txtBloc .ttl a {
    font-size: 15px;
    font-weight: bold;
  }

  /* 記事内のすべてのリンクにスタイルを適用（スマートフォン版） */
  .news_left .txtBloc a {
    color: #000;
    text-decoration: underline;
    transition: all 0.3s ease;
  }

  .news_left .txtBloc a:hover {
    color: #333;
    text-decoration: underline;
    background-color: #f0f0f0;
  }

  .news_left .txtBloc .txt,
  .news_left .txtBloc .txt a {
    margin-top: 10px;
    font-size: 15px;
    line-height: 1.6em;
  }

  .news_left .txtBloc .txt a {
    color: #e03060;
  }

  .news_left .txtBloc .txt {
    margin-top: 5px;
  }
  .news-body {
    flex-direction: column;
  }
  .news_left .txtBloc {
    order: 1;
  }
  .news-thumb {
    display: block;
    width: 100%;
    max-width: 120px;
    margin: 0 auto;
  }
  .news-thumb::before,
  .news-thumb::after {
    display: none;
  }
  .news-thumb .newsimg,
  .news-thumb img.newsimg {
    max-width: 100%;
    margin: 0 auto;
  }

  span.complete {
    margin-top: 10px;
    font-size: 16px;
    line-height: 1.6em;
    background-image: url(/news/img/border_w_red.png);
    background-repeat: repeat-x;
    background-position: center;
  }

  span.thankyou {
    margin-top: 10px;
    font-size: 16px;
    line-height: 1.6em;
    color: #F00;
  }

  .newsimg {
    width: 100% !important;
  }

  .txtBack {
    margin-bottom: 1rem;
    font-size: 16px;
  }

  .txtBack a {
    font-size: 0.8em;
    color: #F00;
  }

  .ttl_year {
    font-family: 'Quicksand', sans-serif;
    color: #fff;
    background-color: #ff0000;
    border-radius: 0.4em;
    color: #FFF;
    display: inline-block;
    padding: 0.3rem 0.6rem 0.3rem 0.6rem;
    line-height: 1;
    margin-bottom: 1rem;
    font-size: 18px;
  }

  .boxPastLive {
    font-size: 16px;
  }

  .boxPastLive strong {
    font-size: 16px;
  }
}

