/* ==============================
   ベース
   ============================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: #f8f4e6;  /* みじんこブログ共通の背景色 */
  color: #444;
}

/* ==============================
   ヘッダー（バナー）※固定しない！
   ============================== */
.site-header {
  padding: 16px 0;
  background: #f8f4e6;
  /* notice ページではシンプルに、固定しない */
  position: static;
  width: 100%;
}

.header-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 16px;
}

.logo-image {
  display: block;
  height: 120px;
  width: auto;
}

/* SPでロゴを少し小さく */
@media (max-width: 959.98px) {
  .logo-image {
    height: 80px;
  }
}

/* ==============================
   メイン（お知らせ本文）
   ============================== */

/* 固定ヘッダーをやめたので、余白は普通でOK */
.notice-wrapper {
  max-width: 900px;
  margin: 40px auto;
  padding: 24px;
  background: #ffffff;
  border: 1px solid #dddddd;
  border-radius: 6px;
}

/* ページタイトル */
.notice-title {
  font-size: 24px;
  margin: 0 0 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid #339999;
  color: #444;
}

/* 日付 */
.notice-date {
  font-size: 13px;
  color: #777;
  margin-bottom: 20px;
  display: block;
}

/* 本文全体 */
.notice-body {
  font-size: 15px;
  line-height: 1.8;
}

/* 段落 */
.notice-body p {
  margin: 0 0 1.2em;
}

/* 小見出し（本文内の h2） */
.notice-body h2 {
  font-size: 18px;
  margin: 24px 0 8px;
  color: #333;
  border-bottom: 1px solid #339999;
}

/* 箇条書き */
.notice-body ul {
  padding-left: 20px;
  margin: 0 0 1.2em;
}

.notice-body li {
  margin-bottom: 4px;
}

/* TOPへ戻るリンク */
.back-top {
  margin-top: 32px;
  text-align: right;
}

.back-top a {
  color: #339999;
  font-size: 14px;
  text-decoration: none;
}

.back-top a:hover {
  text-decoration: underline;
}

/* ==============================
   フッター
   ============================== */
.site-footer {
  border-top: 1px solid #339999;
  margin-top: 40px;
}

.footer-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 16px;
  text-align: center;
}

.copyright {
  font-size: 80%;
  text-align: center;
  margin: 0 0 8px;
}

.number {
  font-size: 90%;
  text-align: right;
  margin: 0;
}
