@charset "UTF-8";

/* お知らせ詳細ページ専用スタイル */

.topic_ {
  width: 92%;
  max-width: 900px; /* 広がりすぎないよう制限 */
  margin: 5rem auto;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

/* ページタイトル：ミニマルかつ力強いデザイン */
.topic_head {
  position: relative;
  margin-bottom: 40px;
  padding-bottom: 20px;
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #042553;
  border-bottom: 1px solid #e1e8f0;
}

.topic_head::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 80px;
  height: 4px;
  background: #083f8b;
}

/* 記事コンテナ：背景は白、境界線に淡いブルーを使用 */
.topiclist_body_ {
  background: linear-gradient(145deg, #ffffff, #f8faff);
  padding: 50px 60px;
  border-radius: 12px;
  border: 1px solid #e1e8f0;
  box-shadow: 0 10px 30px rgba(4, 37, 83, 0.05);
}

/* 記事タイトル：左ラインでアクセント */
.topic_title_ {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 35px;
  padding-left: 20px;
  border-left: 4px solid #083f8b; /* 左側のアクセントライン */
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.4;
  color: #042553;
}

.topic_title_ img {
  /* height: 20px; */
  width: auto;
  filter: saturate(0.8); /* アイコンが浮きすぎないよう微調整 */
}

/* 本文エリア：余白を最適化 */
.article_ {
  margin: 0; /* マージンをリセットしてコンテナのpaddingに任せる */
  font-size: 1.6rem;
  line-height: 2;
  color: #444;
  letter-spacing: 0.02em;
}

/* 装飾：重要なテキスト */
.article_ strong {
  color: #042553;
  font-weight: 600;
  background: linear-gradient(transparent 60%, rgba(200, 220, 255, 0.4) 60%);
  padding: 0 2px;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .topiclist_body_ {
    padding: 30px 20px;
  }
  .topic_head {
    font-size: 2.2rem;
  }
  .topic_title_ {
    font-size: 1.8rem;
  }
}