/* 特別表示エリア */
.area-top-notice {
  width: 100%;
  margin-bottom: 16px;
}

.top-notice-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background-color: #f8f9fa;
  border: 1px solid #e2e8f0;
  border-radius: 4px;
  text-decoration: none;
  color: #333;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.top-notice-link:hover {
  background-color: #f0f4f8; /* ホバー時に少し濃い薄青灰色へ */
  border-color: #cbd5e1;
  text-decoration: none;
}

/* 左側要素の横並び */
.top-notice-left {
  display: flex;
  align-items: center;
  gap: 24px; /* 日付・タグ・タイトルの間隔を整える */
  flex: 1;
}

/* カテゴリタグ：既存のスタイルを活用 */
.top-notice-left .category {
  font-size: 1.4rem;
  white-space: nowrap;
}


/* 右側矢印アイコン */
.top-notice-right {
  margin-left: 16px;
  flex-shrink: 0;
}

.top-notice-link .icon-arrow {
  font-size: 0.9rem;
  color: #004098; /* 他の矢印の色に合わせる */
  transition: transform 0.2s ease;
}

.top-notice-link:hover .icon-arrow {
  transform: translateX(4px);
}

/* スマホ対応（767px以下） */
@media screen and (max-width: 767px) {
  .top-notice-link {
    padding: 12px 14px;
  }

  .top-notice-left {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .top-notice-left .date {
    font-size: 0.9375rem;
  }

  .top-notice-left .info-title {
    font-size: 0.9375rem;
  }
}


