/* お知らせ全体 */
.news-wrapper {
  margin-top: 2em;
  margin-bottom: 1.5em;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

/* お知らせ見出し */
.news-wrapper .info_heading {
  font-size: 1.6em;
  font-weight: bold;
  margin-bottom: 1em;
  color: #333;
  border-left: 4px solid #ff5f83; /* アクセントライン */
  padding-left: 0.5em;
}

/* ニュース1件 */
.news-wrapper .news-item {
  margin-bottom: 1em;
  padding: 0.8em 1em;
  background-color: #fff5f7; /* 薄いピンク背景 */
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  transition: transform 0.2s, box-shadow 0.2s;
}

/* ホバー効果 */
.news-wrapper .news-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* 日付 */
.news-wrapper .news-date {
  font-weight: bold;
  color: #d9005f;
  margin-bottom: 0.4em;
}

/* メッセージ */
.news-wrapper .news-message a,
.news-wrapper .news-message span {
  color: #333;
  text-decoration: none;
  font-size: 1em;
  line-height: 1.5;
  transition: color 0.2s;
}

.news-wrapper .news-message a:hover {
  color: #ff5f83;
  text-decoration: underline;
}




/* ページネーション全体 */
.pagerlist {
  margin-top: 1.5em; /* 上余白 */
  text-align: center;
}

/* ページ番号のボタン */
.pagerlist ul li {
  display: inline-block;
  margin: 0 0.3em;
}

/* リンク */
.pagerlist ul li a {
  display: inline-block;
  padding: 0.4em 0.8em;
  border-radius: 6px;
  border: 1px solid #e0e0e0;
  background-color: #fff;
  color: #555;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
}

/* ホバー時 */
.pagerlist ul li a:hover {
  background-color: #ffdee2; /* 薄いピンク */
  border-color: #ff9eb0;     /* 少し濃いピンク */
  color: #d9005f;
}

/* 現在ページ */
.pagerlist ul li span {
  display: inline-block;
  padding: 0.4em 0.8em;
  border-radius: 6px;
  background: linear-gradient(145deg, #ff9eb0, #ff5f83); /* ピンクグラデーション */
  color: #fff;
  font-weight: bold;
  border: 1px solid #ff5f83;
  box-shadow: 0 2px 5px rgba(0,0,0,0.15);
}


/* ページネーション全体の上に余白を追加 */
.pagerlist {
  margin-top: 1.5em;   /* 上にスペースを作る */
  /* または padding-top: 1.5em; でも可 */
}





.info_detail_lists dt {
  margin-top: 10px;
  font-weight: bold;
}
.info_detail_lists dd {
  margin-left: 20px;
  margin-bottom: 5px;
}

div.free_space {
 margin: 0 0 4em 0; 
}
div.free_space > div.col {
 padding: 2em 0 0 0; 
}