@charset "UTF-8";
/* CSS Document */
.ir-other-title {
	padding-bottom: 0.5625rem;
	padding-top: 8.3125rem;
	position: relative;
	text-align: center;
}

.ir-other-title h1 {
	color: #f62837;
	font-size: 2.7rem;
	font-weight: 700;
}
@media screen and (max-width: 769px) {
.ir-other-title {
	padding-bottom: 0.375rem;
	padding-top: 3.75rem;
}

.ir-other-title h1 {
	font-size: 1.5rem;
}}

  .ir-year-docs {
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Noto Sans JP", sans-serif;
  }

  /* 年度セレクト */
  .fy-select {
    margin: 8px 0 20px;
  }
  .fy-select__control {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding: 12px 44px 12px 16px;
    border: 2px solid #2962d9;
    border-radius: 10px;
    font-weight: 700;
    font-size: 18px;
    line-height: 1;
    color: #1f2937;
    background:
      /* ▼アイコン */
      url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" viewBox="0 0 24 24"><path d="M7 10l5 5 5-5" fill="none" stroke="%233163f0" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>')
      no-repeat right 12px center / 18px 18px,
      #fff;
    cursor: pointer;
    box-shadow: 0 1px 0 rgba(0,0,0,.02), inset 0 0 0 1px rgba(255,255,255,.2);
  }
  .fy-select__control:focus {
    outline: 0;
    box-shadow: 0 0 0 3px rgba(49,99,240,.2);
  }

  /* リスト */
  .doc-list {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .doc-item {
    padding: 12px 0;
  }
  .doc-row {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 16px;
    align-items: center;
  }
  .doc-date {
    font-weight: 800;
    color: #3b3f45;
    letter-spacing: .03em;
    min-width: 120px; /* 2025.03.28 の幅を確保 */
  }
  .doc-title {
    color: #2f3640;
  }
  .doc-sub {
    color: #6b7280;
    font-size: 14px;
    margin-left: .35em;
  }
  .doc-type {
    display: inline-flex;
    align-items: center;
  }
  .doc-sep {
    margin: 16px 0 0;
    border: 0;
    border-top: 1px solid #e5e7eb;
  }

.doc-row {
  display: flex;
  align-items: center;
  gap: 8px; /* ← 日付とタイトルの間だけ */
}

.doc-date {
  font-weight: 800;
  color: #3b3f45;
  letter-spacing: .03em;
  margin-right: 16px; /* 日付と本文の距離を調整 */
  white-space: nowrap;
}

.doc-title {
  color: #2f3640;
  display: inline-flex;
  align-items: center;
  gap: 4px; /* ← タイトルとアイコンの隙間 */
}

.doc-type {
  display: inline-flex;
  align-items: center;
  margin-left: 4px; /* ← さらに微調整したい場合ここ */
}

.doc-sep {
  margin: 16px 0 0;
  border: 0;
  border-top: 1px solid #e5e7eb;
}


  /* アクセシビリティ向けスクリーンリーダーテキスト */
  .sr-only {
    position: absolute !important;
    height: 1px; width: 1px;
    overflow: hidden; clip: rect(1px, 1px, 1px, 1px);
    white-space: nowrap;
  }

  /* レスポンシブ */
  @media (max-width: 640px) {
    .fy-select__control {
      font-size: 16px;
      padding: 11px 40px 11px 14px;
      border-radius: 8px;
    }
    .doc-row {
      grid-template-columns: 1fr auto;
      grid-template-areas:
        "date type"
        "title title";
      gap: 8px 12px;
    }
    .doc-date { grid-area: date; min-width: 0; }
    .doc-type { grid-area: type; justify-self: end; }
    .doc-title { grid-area: title; }
  }

 /* 非掲載メッセージ */
  .empty-msg {
    display: none;
    text-align: center;
    padding: 48px 16px;
    color: #555;
    font-size: 16px;
  }

/* main全体のレイアウト調整 */
main {
  width: 100%;
  padding: 24px 16px;
  box-sizing: border-box;
}

/* PC幅(1024px〜)で中央寄せ＆60%幅 */
@media (min-width: 1024px) {
  main {
    width: 60%;
    margin: 0 auto;
  }
}
