/* お知らせ詳細ページのスタイル */
.single-notice {
  background: var(--color-white);
  width: 100%;
}

.single-notice-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.notice-article {
  /* 中央寄せ・余白はinnerで制御するので、ここは不要 */
}

.notice-title {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.notice-date {
  display: block;
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 30px;
}

.notice-content {
  line-height: 1.8;
  font-size: 1rem;
}

/* ===============================
   Tips / Check ラベル
=============================== */

.release-label {
  padding: 0.8rem 1rem;
  border-radius: 6px;
  margin: 1.5rem 0;
  font-size: 0.95rem;
  line-height: 1.6;
  position: relative;
  background-color: #f9f9f9;
  border-left: 6px solid;
  box-shadow: 0 2px 4px rgba(0,0,0,0.04);
}

.release-label strong {
  display: inline-block;
  margin-right: 0.5rem;
  font-weight: bold;
}

.release-label.check {
  border-color: #06b6d4;
  background-color: #ecf9fb;
  color: #045865;
}

.release-label.tips {
  border-color: #fbbf24;
  background-color: #fff9e6;
  color: #7a4e00;
}

