
.app-info-card-container {
    width: 100%; /* 幅いっぱい */
    max-width: 1100px; /* ある程度の最大幅を設定して、広がりすぎないようにする */
    background-color: #ffffff;
    border-radius: 7px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    margin-bottom: 0px; /* 必要に応じて下部に余白 */
}

.app-info-card-header {
    background-image: linear-gradient(135deg, #fff 0%, #fff 100%);
    color: black;
    padding: 15px 30px;
    text-align: center;
    font-size: 1.8em;
    font-weight: 700;
    border-top-left-radius: 7px;
    border-top-right-radius: 7px;
    letter-spacing: 0.05em;
}

.app-info-card-content {
    padding: 15px;
    line-height: 1.8;
    color: #333;
    font-size: 1.1em;
    flex-grow: 1; /* 内容が伸びるように設定 */
    text-align: justify;
    word-wrap: break-word; /* 長い単語の折り返し */
}

.app-info-card-footer {
    padding: 10px 30px;
    text-align: center;
    border-top: 1px solid #eee;
    background-color: #f9f9f9;
}

.app-info-card-more-button {
    display: inline-block;
    background-image: linear-gradient(45deg, #071265 0%, #071265 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.0em;
    transition: all 0.3s ease;
}

.app-info-card-more-button:hover {
    transform: translateY(-3px);
    background-image: linear-gradient(45deg, #A6A6A6 0%, #A6A6A6 100%); /* ホバー時のグラデーションを少し変える */
}

/* レスポンシブ対応 */
@media (max-width: 768px) {


.app-info-card-container {
    width: 100%; /* 幅いっぱい */
}

    .app-info-card-header {
        font-size: 1.5em;
        padding: 20px 20px;
    }
    .app-info-card-content {
        font-size: 1em;
        padding: 20px;
    }
    .app-info-card-more-button {
        padding: 10px 20px;
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    body {
        padding: 5px;
    }
    .app-info-card-container {
        border-radius: 8px;
    }
    .app-info-card-header {
        font-size: 1.3em;
        padding: 15px 15px;
    }
    .app-info-card-content {
        padding: 15px;
        line-height: 1.6;
    }
    .app-info-card-more-button {
        padding: 8px 18px;
        font-size: 0.9em;
    }
}



/* お知らせリスト全体のスタイル */
.news-list-bizarre {
  padding: 0px; /* 全体のパディング */
  max-width: 800px; /* リスト全体の最大幅を少し広げます */
  margin: 0 auto; /* 中央寄せ */
}

/* 個々のお知らせアイテムのスタイル */
.news-item-quirky {
  border-bottom: 1px dotted #ccc; /* 下点線を追加 */
  padding: 10px 0; /* 内側の上下余白 */
  display: flex; /* 子要素をFlexboxで配置 */
  align-items: center; /* 垂直方向中央揃え */
  flex-wrap: wrap; /* 要素が入りきらない場合に折り返す */
  gap: 10px; /* 要素間の余白 */
}

/* 最後の要素に下線がないようにする */
.news-item-quirky:last-child {
  border-bottom: none;
}

/* 日付とカテゴリーボタンのラッパー */
.news-meta-odd {
  display: flex; /* 子要素を横に並べる */
  align-items: center; /* 垂直方向中央揃え */
  gap: 10px; /* 日付とカテゴリー間の余白 */
}

/* 日付のスタイル */
.news-date-peculiar {
  font-size: 0.9em; /* フォントサイズ */
  color: #555; /* 文字色 */
  flex-shrink: 0; /* 縮小させない */
}

/* カテゴリーボタンのコンテナ */
.news-categories-strange {
  display: flex; /* ボタンを横に並べる */
  flex-wrap: wrap; /* ボタンが入りきらない場合に折り返す */
  gap: 5px; /* ボタン間の余白 */
}

/* カテゴリーボタンのスタイル */
.category-button-weird {
  background-color: #e0e0e0; /* 背景色 */
  border: none; /* 枠線なし */
  border-radius: 5px; /* 角を丸くする */
  padding: 5px 10px; /* 内側の余白 */
  font-size: 0.8em; /* フォントサイズ */
  cursor: pointer; /* カーソルをポインターに */
  white-space: nowrap; /* テキストの折り返しを防ぐ */
}

.category-button-weird:hover {
  background-color: #d0d0d0; /* ホバー時の背景色 */
}

/* お知らせ内容（タイトル）のスタイル */
.news-content-unusual {
  font-size: 16px; /* フォントサイズ */
    font-weight: 400;
  line-height: 1.0; /* 行の高さ */
  color: #333; /* 文字色 */
  margin: 0; /* h3タグのデフォルトマージンをリセット */
  flex-grow: 1; /* 残りのスペースを埋めるように伸縮 */
}

/* リンクのスタイル */
.news-link-fancy {
  color: #333; /* 文字色 */
  text-decoration: none; /* 下線を削除 */
}

.news-link-fancy:hover {
  color: #007bff; /* ホバー時の文字色 */
  text-decoration: underline; /* ホバー時に下線を表示 */
}


/* 画面幅が小さい場合のレスポンシブ対応 */
@media (max-width: 488px) { /* 8px以下でスマホ表示に切り替え */
  .news-list-bizarre {
    padding: 15px; /* パディングを調整 */

  }

  .news-item-quirky {
    flex-direction: column; /* 縦並びに変更 */
    align-items: flex-start; /* 左寄せ */
    padding: 10px 0; /* パディングを調整 */
  }

  .news-meta-odd {
    flex-direction: column; /* 日付とカテゴリーも縦並びに */
    align-items: flex-start; /* 左寄せ */
    margin-bottom: 8px; /* 下の余白を追加 */
  }

  .news-date-peculiar {
    margin-bottom: 5px; /* 日付の下に余白 */
  }

  .news-categories-strange {
    width: 100%; /* 幅いっぱいに広げる */
    justify-content: flex-start; /* 左寄せ */
  }

  .news-content-unusual {
    width: 100%; /* 幅いっぱいに広げる */
  }
}





