/* ▼ お知らせ一覧（.news） -------------------------- */

/* お知らせ一覧 */
.news .extCatListUL {
  list-style: none;
  margin: 0;
  padding: 0;
}

.news .extCatListUL > li {
  background: #fafafa;
  border-radius: 24px;
  padding: 24px 40px;
  margin-bottom: 24px;
}

.news .extCatList5Inner {
  display: flex;
  align-items: center;
  gap: 40px;
}

/* 日付 */
.news .extCatList5Date span {
  font-size: 18px;
  color: #555;
  white-space: nowrap;
}

/* 本文部分 */
.news .extCatList5InnerText {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* ▼ ラベルを見出しの上に配置＋5px間隔 */
.news .bCatListLabel {
  order: -1; /* 順番を上に変更 */
  margin-bottom: 10px; /* ラベルと見出しの間隔 */
}

.news .bcatlabel {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  padding: 6px 22px;
  border-radius: 999px;
  margin-right: 8px;
}

/* 見出し（タイトル） */
.news .extCatList5InnerText strong {
  display: block;
  margin-bottom: 6px;
}

.news .extCatList5InnerText strong a {
  font-size: 18px;
  font-weight: 700;
  color: #333;
  text-decoration: none;
}

.news .extCatList5InnerText strong a:hover {
  text-decoration: underline;
}

/* スマホ対応 */
@media (max-width: 768px) {
  .news .extCatList5Inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .news .extCatListUL > li {
    padding: 20px 16px;
  }

  .news .extCatList5InnerText strong a {
    font-size: 16px;
  }

  .news .extCatList5Date span {
    font-size: 16px;
  }
}


body{
    margin: 0;
    padding: 0;
    -webkit-font-smomthing: subpixel-antialiased;
    font-family: "Noto Sans JP",sans-serif; 
    line-height: 2em;
    font-size: 100%;
    word-break: break-all;
}
h1,h2,h3,h4{
    font-weight: 800!important;
   font-family: "Noto Sans JP",sans-serif; 
}

p {
    font-size: 16px;
    line-height: 1.8em;
}
div {
    font-size: 16px;
    line-height: 1.8em;
}

a {
  text-decoration: none;
}



/*フッター*/
/* --- リセット --- */
ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* --- ナビゲーションのレイアウト --- */
.nav-container {
  padding: 40px 20px;
  background-color: #ffffff;
}

.nav-list {
  display: flex;
  flex-wrap: wrap;
  
  /* 左右の間隔(40px)はそのまま、上下の行間を10pxに微調整 */
  column-gap: 40px; 
  row-gap: 10px;    /* ★ここを10pxにしてさらに縮めました */
  
  justify-content: flex-start;
  align-items: center;
}

/* 各リスト項目の余計な隙間をゼロにする（念のための対策） */
.nav-item {
  margin: 0 !important;
  padding: 0 !important;
}

/* --- メニュー項目のスタイル（下線なし・強制真っ黒・細身のフォント） --- */
.nav-item a {
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 16px;
  
  /* ★ boldを廃止し、少し細身（中細）の500に変更 */
  font-weight: 500 !important; 
  
  color: #000 !important; 
  text-decoration: none !important;
  border: none !important;
  padding-bottom: 0 !important;
  
  display: inline-flex;
  align-items: center;
  transition: opacity 0.2s ease;
}

/* 文頭の「＞」マーク */
.nav-item a::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  border-top: 1.5px solid #000 !important;  
  border-right: 1.5px solid #000 !important; 
  transform: rotate(45deg);
  margin-right: 12px;
  margin-bottom: 1px;
  flex-shrink: 0;
}

/* ホバー時のエフェクト */
.nav-item a:hover {
  opacity: 0.7;
}
