/* ===========================
   Dog Salon Hana — 閉店お知らせ
   =========================== */

/* ---------- リセット & ベース ---------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #fdf8f4;
  background-image:
    radial-gradient(ellipse at 20% 20%, rgba(210, 180, 160, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 80%, rgba(180, 160, 140, 0.14) 0%, transparent 60%);
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", "Noto Serif JP", Georgia, serif;
  color: #3a2e28;
  padding: 2rem 1rem;
}

/* ---------- カード ---------- */
.card {
  background: #ffffff;
  border: 1px solid #e0d4c8;
  border-radius: 4px;
  max-width: 560px;
  width: 100%;
  padding: 3.5rem 3rem;
  text-align: center;
  box-shadow:
    0 2px 8px rgba(100, 70, 50, 0.07),
    0 8px 32px rgba(100, 70, 50, 0.05);
  position: relative;
}

/* 上下の装飾ライン */
.card::before,
.card::after {
  content: "";
  display: block;
  height: 2px;
  background: linear-gradient(to right, transparent, #c8a882, transparent);
  margin: 0 auto;
}

.card::before {
  margin-bottom: 2.5rem;
}

.card::after {
  margin-top: 2.5rem;
}

/* ---------- ロゴ / サロン名 ---------- */
.salon-name {
  font-size: 1.05rem;
  letter-spacing: 0.35em;
  color: #8c6a4e;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.salon-name-ja {
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: #5a3e2e;
  margin-bottom: 2.2rem;
}

/* ---------- 区切り装飾 ---------- */
.divider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0 auto 2.2rem;
  width: fit-content;
  color: #c8a882;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
}

.divider::before,
.divider::after {
  content: "";
  display: block;
  width: 48px;
  height: 1px;
  background: #c8a882;
}

/* ---------- 見出し ---------- */
.notice-heading {
  font-size: 1.15rem;
  letter-spacing: 0.25em;
  color: #5a3e2e;
  margin-bottom: 2rem;
  font-weight: 600;
}

/* ---------- 本文 ---------- */
.notice-body {
  font-size: 1rem;
  line-height: 2.1;
  letter-spacing: 0.06em;
  color: #4a3828;
}

.notice-body .date {
  font-weight: 600;
  color: #7a4e30;
}

/* ---------- フッター ---------- */
footer {
  margin-top: 2.5rem;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  color: #b09880;
}

/* ---------- レスポンシブ ---------- */
@media (max-width: 480px) {
  .card {
    padding: 2.5rem 1.5rem;
  }

  .salon-name-ja {
    font-size: 1.25rem;
  }

  .notice-body {
    font-size: 0.93rem;
  }
}
