@charset "shift_jis";
/* CSS Document */

/* -------------------------------------------
テーブル
------------------------------------------- */
/* .about_h,
.about_txt {
  padding-top: 20px;
  line-height: 140%;
} */
.about_h {
  width: 120px;
}
.about_h span {
  background: #c49372;
  color: #f5f3e2;
  font-weight: bold;
  padding: 3px 1px;
  width: 100px;
  display: inline-block;
  text-align: center;
}

/* -------------------------------------------
PDFリストエリア
------------------------------------------- */
/* パネル全体（薄い方眼＋外枠） */
.notice-panel {
  --accent: #d07b3a;
  --bg: #f8f4ef;
  --grid: rgba(208, 123, 58, 0.12);

  background-color: var(--bg);
  background-image: linear-gradient(var(--grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid) 1px, transparent 1px);
  background-size: 24px 24px;
  border: 2px solid rgba(208, 123, 58, 0.55);
  padding: 10px 10px 6px;
}

/* 一覧 */
.notice-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* 行（点線区切り） */
.notice-item {
  border-bottom: 1px dashed rgba(208, 123, 58, 0.55);
}
.notice-item:first-child {
  border-top: 1px dashed rgba(208, 123, 58, 0.55);
}

/* リンク（横並び） */
.notice-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 8px;
  color: var(--accent);
  text-decoration: none;
  line-height: 1.35;
}

/* ホバー */
.notice-link:hover {
  background: rgba(255, 255, 255, 0.35);
}

/* 左の丸 */
.notice-dot {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  flex: 0 0 14px;
  border: 2px solid rgba(0, 0, 0, 0.4);
  background: transparent;
}
.notice-item.is-main .notice-dot {
  background: rgba(0, 0, 0, 0.45); /* mainは塗り */
  border-color: rgba(0, 0, 0, 0.45);
}

/* タイトル・メタ */
.notice-title {
  flex: 1;
  min-width: 0;
  font-weight: 600;
}
.notice-meta {
  flex: 0 0 auto;
  opacity: 0.9;
}

/* 右の?*/
.notice-arrow {
  flex: 0 0 30px;
  height: 22px;
  border-left: 1px dashed rgba(208, 123, 58, 0.55);
  position: relative;
}
.notice-arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 6px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 9px solid rgba(208, 123, 58, 0.9);
}
