@charset "utf-8";

/* ==========================================================================
   ニュースメインコンテンツ用スタイル（main-content-news.css）
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. セクション・コンテナ基本設計
   -------------------------------------------------------------------------- */
.news-content-section {
  padding: 60px 0 100px;
  background-color: #fcfbf9; /* ホテルの上質感を醸し出す、ごく薄い生成り色 */
  color: #333333;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

.news-content-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

/* --------------------------------------------------------------------------
   2. カテゴリ絞り込みタブ（フィルター）
   -------------------------------------------------------------------------- */
.news-filter-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 50px;
}

.filter-btn {
  background: #ffffff;
  border: 1px solid #dcd6cd;
  color: #666666;
  padding: 10px 24px;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 0; /* カッチリとした高級感を出すため角丸はあえて無し */
}

.filter-btn:hover {
  background-color: #f5f0e6;
  color: #8b7355; /* 上品なブロンズ・ゴールド系 */
  border-color: #8b7355;
}

/* ==========================================================================
   ニュース詳細ページ用 拡張スタイル
   ========================================================================== */
.news-detail-header {
  margin-bottom: 20px;
}

.news-detail-title {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.4;
  margin-top: 20px;
  color: #222222;
  text-align: center; /* ←メイン記事タイトル 中央揃え */
}

.news-detail-divider {
  border: 0;
  border-top: 1px solid #dcd6cd;
  margin: 30px 0;
}

.news-detail-body {
  font-size: 1.05rem;
  line-height: 1.8;
  letter-spacing: 0.03em;
}

.news-detail-body p {
  margin-bottom: 24px;
}

.news-detail-body strong {
  color: #a93c3c; /* 休業などの重要箇所を上品な赤で強調 */
  font-weight: bold;
}

.news-detail-signature {
  text-align: right;
  margin-top: 40px;
  color: #555555;
  line-height: 1.5;
}

/* 一覧に戻るボタン */
.news-detail-footer {
  text-align: center;
  margin-top: 40px;
}

.btn-back-to-list {
  display: inline-block;
  background-color: #ffffff;
  border: 1px solid #8b7355;
  color: #8b7355;
  padding: 12px 40px;
  text-decoration: none;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
}

.btn-back-to-list:hover {
  background-color: #8b7355;
  color: #ffffff;
  text-decoration: none;
}

/* スマホ対応 */
@media screen and (max-width: 768px) {
  .news-detail-title {
    font-size: 1.4rem;
  }
  .news-detail-body {
    font-size: 0.95rem;
    line-height: 1.7;
  }
}

.filter-btn.active {
  background-color: #8b7355;
  color: #ffffff;
  border-color: #8b7355;
  font-weight: bold;
}

/* --------------------------------------------------------------------------
   3. ニュースリスト（一覧構造）
   -------------------------------------------------------------------------- */
.news-list {
  list-style: none;
  padding: 0;
  margin: 0 0 60px 0;
  border-top: 1px solid #dcd6cd;
}

.news-item {
  border-bottom: 1px solid #eae5dd;
}

.news-link {
  display: flex;
  align-items: center;
  padding: 24px 15px;
  text-decoration: none;
  color: #333333;
  transition: background-color 0.3s ease;
  position: relative;
}

.news-link:hover {
  background-color: #f7f3eb;
  text-decoration: none;
}

/* マウスホバー時にタイトルを少し右に動かす微細な演出 */
.news-link:hover .news-item-title {
  color: #8b7355;
  transform: translateX(4px);
}

/* --------------------------------------------------------------------------
   4. メタ情報（日付・カテゴリバッジ）
   -------------------------------------------------------------------------- */
.news-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-shrink: 0;
  width: 240px; /* 日付とバッジの幅を揃えて縦ラインを美しく整える */
}

.news-date {
  font-family: "Georgia", serif; /* 数字を美しく見せるセリフ体 */
  font-size: 1.1rem;
  color: #777777;
  letter-spacing: 0.05em;
}

/* カテゴリバッジ共通設定 */
.news-category {
  display: inline-block;
  padding: 4px 12px;
  font-size: 0.75rem;
  font-weight: bold;
  letter-spacing: 0.03em;
  text-align: center;
  min-width: 100px;
}

/* バッジ個別カラー（旧ソースの意図を継承・洗練） */
.badge-notice {
  background-color: #a93c3c; /* お知らせ：落ち着いたボルドーレッド */
  color: #ffffff;
}

.badge-info {
  background-color: #3b597a; /* ホテルからのお知らせ：気品のあるディープブルー */
  color: #ffffff;
}

.badge-restaurant {
  background-color: #8b7355; /* お食事：格調高いホテルブロンズ */
  color: #ffffff;
}

.badge-event {
  background-color: #4a7a5d; /* イベント：深みのあるクラシックグリーン */
  color: #ffffff;
}

/* 新規追加ブランド・施設カテゴリーバッジ */
.badge-lexton {
  background-color: #3b597a; /* レクストン鹿児島：気品のあるディープブルー */
  color: #ffffff;
}

.badge-banquet {
  background-color: #6a5a73; /* 会議・宴会：ノーブルなクラシックパープル */
  color: #ffffff;
}

.badge-takechiyo {
  background-color: #4a7a5d; /* 竹千代’：深みのあるクラシックグリーン */
  color: #ffffff;
}

.badge-shidashi {
  background-color: #657a4a; /* 竹千代 仕出し部’：深みのあるイエローグリーン */
  color: #ffffff;
}

.badge-himeragi {
  background-color: #6a5a73; /* ダイニング皇’：ノーブルなクラシックパープル */
  color: #ffffff;
}

.badge-satsuma {
background-color: #3d2d25; /* 想咲鉄板 薩摩：た重厚なディープコッパーブラウン */
  color: #ffffff;
}

/* --------------------------------------------------------------------------
   5. 記事タイトル ＆ 矢印（アローアイコン）
   -------------------------------------------------------------------------- */
.news-item-title {
  font-size: 1.05rem;
  font-weight: normal;
  line-height: 1.6;
  margin: 0;
  padding-right: 40px; /* 矢印と被らないための余白 */
  flex-grow: 1;
  transition: all 0.3s ease;
}

/* 右端の矢印アイコン（CSSだけで描写） */
.news-arrow {
  position: absolute;
  right: 20px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-top: 2px solid #bcae9b;
  border-right: 2px solid #bcae9b;
  transform: translateY(-50%) rotate(45deg); /* 重複記述を整理し、配置と回転を統合 */
  transition: border-color 0.3s ease, right 0.3s ease;
}

.news-link:hover .news-arrow {
  border-color: #8b7355;
  right: 16px; /* ホバー時に少し右に引き込まれる動き */
}

/* --------------------------------------------------------------------------
   6. ページネーション
   -------------------------------------------------------------------------- */
.news-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.news-pagination .page-number,
.news-pagination .page-next {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 40px;
  height: 40px;
  padding: 0 6px;
  border: 1px solid #dcd6cd;
  background-color: #ffffff;
  color: #666666;
  text-decoration: none;
  font-family: "Georgia", serif;
  font-size: 1rem;
  transition: all 0.3s ease;
  cursor: pointer; /* クリック可能なボタンに指マークを適用 */
}

.news-pagination .page-number.current {
  background-color: #333333;
  color: #ffffff;
  border-color: #333333;
  font-weight: bold;
  cursor: default; /* 現在の選択中ページはクリック不可のため通常の矢印カーソルに戻す */
}

.news-pagination .page-number:not(.current):hover,
.news-pagination .page-next:hover {
  background-color: #8b7355;
  color: #ffffff;
  border-color: #8b7355;
  text-decoration: none;
}

.news-pagination .page-next {
  font-family: inherit;
  font-size: 0.85rem;
  padding: 0 16px;
}

/* --------------------------------------------------------------------------
   7. レスポンシブ対応（タブレット・スマホ最適化）
   -------------------------------------------------------------------------- */
@media screen and (max-width: 768px) {
  .news-content-section {
    padding: 40px 0 60px;
  }

  .news-filter-tabs {
    margin-bottom: 30px;
    gap: 8px;
  }

  .filter-btn {
    padding: 8px 16px;
    font-size: 0.85rem;
  }

  /* スマホ環境では横並びを解消し、縦積みにして可読性を確保 */
  .news-link {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 10px;
  }

  .news-meta {
    width: 100%;
    margin-bottom: 12px;
    gap: 12px;
  }

  .news-date {
    font-size: 1rem;
  }

  .news-item-title {
    font-size: 0.95rem;
    padding-right: 25px;
  }
  
  .news-arrow {
    right: 10px;
  }
  
  .news-link:hover .news-arrow {
    right: 10px; /* スマホでは動きを抑制 */
  }
}