@charset "UTF-8";
/* CSS Document : 過去のお知らせページ専用 */

/* ===== 共通: 下層ページのヘッダー余白 ===== */
.subPageHeader .headerContentInner {
  padding-bottom: 20px;
}

/* ===== ページタイトル+リード ===== */
.newsHero {
  padding: 90px 0 50px;
  position: relative;
}
.newsHeroTitle {
  text-align: center;
}
.newsHeroTitle h2 {
  text-align: center;
  line-height: 1.1;
}
.newsHeroTitle p.title {
  text-align: center;
  left: 0;
  display: inline-block;
  margin-top: -10px;
  margin-bottom: 50px;
  color: #5a3a25; /* ページトップのみ少し薄い濃茶 */
}
.newsHero .lead {
  text-align: center;
  font-size: 17px;
  line-height: 34px;
  margin: 30px auto 0;
  max-width: 720px;
}
@media screen and (max-width: 640px) {
  .newsHero {
    padding: 50px 0 20px;
  }
  .newsHero .lead {
    font-size: 15px;
    line-height: 28px;
  }
  .newsHero .lead br.pc-br {
    display: none;
  }
}

/* ===== 本体レイアウト ===== */
.newsBoard {
  padding: 30px 0 100px;
}
.newsLayout {
  display: flex;
  gap: 50px;
  align-items: flex-start;
}
.newsMain {
  flex: 1;
  min-width: 0;
}
.newsSide {
  width: 240px;
  flex-shrink: 0;
}

/* ===== お知らせリスト(アコーディオン) ===== */
.news-archive {
  background-color: #fff;
  padding: 20px 30px;
}
.news-archive > li {
  border-bottom: 1px dashed #6A6012;
}
.news-archive > li:last-child {
  border-bottom: none;
}
.newsItem {
  position: relative;
}
.newsItem summary {
  list-style: none; /* 三角マーカー消す */
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 18px 0;
  flex-wrap: wrap;
}
.newsItem summary::-webkit-details-marker {
  display: none; /* Safari対応 */
}
.newsItem summary time {
  font-weight: bold;
  color: #321707;
  font-size: 16px;
  white-space: nowrap;
  font-family: "adobe-caslon-pro", "Noto Sans JP", serif;
}
.newsItem summary .newsTitle {
  flex: 1;
  font-size: 16px;
  color: #333;
  margin: 0;
}
.newsItem summary .ended {
  margin-left: 6px;
  font-size: 13px;
  color: #888;
}
.newsItem summary .toggleIcon {
  color: #6A6012;
  font-size: 14px;
  margin-left: auto;
  width: 28px;
  height: 28px;
  border: 1px solid #6A6012;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s, background-color 0.3s;
}
.newsItem[open] summary .toggleIcon {
  transform: rotate(45deg);
  background-color: #6A6012;
  color: #fff;
}
.newsItem:hover summary .toggleIcon {
  background-color: rgba(106, 96, 18, 0.1);
}
.newsItem[open]:hover summary .toggleIcon {
  background-color: #6A6012;
}

/* ラベル */
.label {
  background-color: #92CFE0;
  color: #2E3192;
  padding: 4px 0;
  border-radius: 5px;
  font-size: 13px;
  font-weight: bold;
  min-width: 6em;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}
.new {
  background-color: #0071BC;
  color: #fff;
}
.campaign {
  background-color: #E8A87C; /* 暖色オレンジ系 */
  color: #5C2E12;
}
.rest {
  background-color: #B5B5A8; /* グレージュ */
  color: #fff;
}

/* 開いた時の本文 */
.newsBody {
  padding: 5px 0 25px 6em; /* ラベル幅分インデント */
  font-size: 15px;
  line-height: 28px;
  color: #444;
}
.newsBody p {
  background-color: rgba(184, 218, 230, 0.2); /* 水色を薄く */
  padding: 18px 22px;
  border-left: 3px solid #6A6012;
}

/* ===== サイドバー(月別アーカイブ) ===== */
.newsSide {
  background-color: #fff;
  padding: 30px 25px;
  position: relative;
}
.newsSide::before { /* 右上のカーキ三角アクセント */
  content: "";
  position: absolute;
  top: -8px;
  right: -8px;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent #6A6012 transparent transparent;
  border-width: 0 36px 36px 0;
}
.archiveTitle {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-bottom: 1px solid #6A6012;
  padding-bottom: 15px;
  margin-bottom: 20px;
  text-align: center;
}
.archiveTitle .en {
  font-family: "adobe-handwriting-ernie", "charm", "Inglesa Script Variable", "selif";
  font-size: 38px;
  color: #321707;
  line-height: 1;
}
.archiveTitle .jp {
  font-family: "クレー", 'Hiragino Kaku Gothic ProN', 'sans-serif';
  font-size: 14px;
  color: #321707;
  margin-top: 6px;
}
.archiveList li {
  border-bottom: 1px dashed #ccc;
}
.archiveList li:last-child {
  border-bottom: none;
}
.archiveList a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 6px;
  font-size: 15px;
  color: #333;
  text-decoration: none;
  font-family: "クレー", 'Hiragino Kaku Gothic ProN', 'sans-serif';
  transition: color 0.2s;
}
.archiveList a:hover {
  color: #6A6012;
}
.archiveList .count {
  font-size: 13px;
  color: #6A6012;
  font-family: "adobe-caslon-pro", serif;
}

/* ===== レスポンシブ ===== */
@media screen and (max-width: 800px) {
  .newsBoard {
    padding: 20px 0 60px;
  }
  .newsLayout {
    flex-direction: column;
    gap: 30px;
  }
  .newsMain {
    width: 100%;
  }
  .newsSide {
    width: 100%;
    padding: 25px 20px;
  }

  .news-archive {
    padding: 10px 20px;
  }
  .newsItem summary {
    gap: 10px;
    padding: 16px 0;
  }
  .newsItem summary time {
    font-size: 14px;
  }
  .newsItem summary .newsTitle {
    width: 100%;
    font-size: 14px;
    line-height: 22px;
    order: 3;
    margin-top: 4px;
  }
  .newsItem summary .toggleIcon {
    width: 26px;
    height: 26px;
    font-size: 12px;
  }
  .label {
    font-size: 12px;
    min-width: 5em;
    padding: 3px 0;
  }
  .newsBody {
    padding: 5px 0 20px 0;
    font-size: 14px;
    line-height: 26px;
  }
  .newsBody p {
    padding: 14px 16px;
  }

  .archiveTitle .en {
    font-size: 32px;
  }
}
