/* ベース設定 */
body {
  font-family: "Hiragino Sans", "Noto Sans JP", sans-serif;
  margin: 0;
  padding: 0;
  background-color: #fdf8f3; /* 柔らかい夕焼けの光 */
  color: #3b2f2f; /* 影色 */
  line-height: 1.6;
}

header, footer {
  text-align: center;
  padding: 1.5rem;
  background: #da521c; /* 夕陽 */
  color: #fff8f0;
}

/* ヘッダーを“固定表示”に（重なり対策込み） */
header {
  position: sticky;
  top: 0;
  z-index: 100;
}

/* ナビゲーション */
.site-nav {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 0.75rem;
}

.site-nav a {
  color: #fff8f0;
  text-decoration: none;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(255, 248, 240, 0.16);
  outline: none;
}

.site-nav a[aria-current="page"] {
  background: rgba(255, 248, 240, 0.24);
  font-weight: 600;
}

/* スムーズスクロールとアンカーの見切れ防止 */
html {
  scroll-behavior: smooth;
}

#top, #ghosts, #balloons, #blog,
.anchor-target {
  scroll-margin-top: 6rem; /* ヘッダー高さぶん余白を確保 */
}


header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: url(../img/top1.jpg) center/cover no-repeat;
  color: #da521c;
}


header h1 {
  margin: 0;
  font-size: 1.8rem;
}

.note {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* カードレイアウト */
main {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 最大3列固定 */
  gap: 1.5rem;
  padding: 2rem;
  max-width: 1200px; /* 横幅制限で中央寄せ */
  margin: 0 auto;
  grid-auto-rows: auto;
}

/* 4段制限（高さでなく要素数で制御） */
main > .ghost:nth-child(n+13) {
  display: none; /* 13枚目以降は非表示（3列×4段＝12枚まで） */
}

/* ゴーストカードがないページは文章用レイアウトに切り替え */
main:not(:has(.ghost)) {
  display: block;          /* グリッド解除 */
  max-width: 600px;        /* 読みやすい幅に制限 */
  margin: 0 auto;          /* 中央寄せ */
  padding: 2rem;           /* 内側余白 */
  gap: 0;                  /* グリッドの隙間をリセット */
  grid-template-columns: none; /* 列指定を解除 */
}




.ghost {
  background-color: #fffaf5; /* 柔らかい光の反射色 */
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(80, 50, 30, 0.15);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ghost:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(80, 50, 30, 0.25);
}

.ghost h2 {
  background: linear-gradient(90deg, #f2a65a, #d97b3d); /* 黄昏の橙 */
  color: #fff8f0;
  margin: 0;
  padding: 0.8rem 1rem;
  font-size: 1.2rem;
}

.ghost figure {
  margin: 0;
}

.ghost img {
  width: 100%;
  aspect-ratio: 4 / 3; /* 横4:縦3の比率 */
  object-fit: cover;
  display: block;
}

.ghost figcaption {
  font-size: 0.9rem;
  padding: 0.5rem 1rem;
  background-color: #fcefe3; /* 夕焼けの淡い反射色 */
}

.ghost p, 
.ghost ul, 
.ghost .credit, 
.ghost .shell-credit {
  padding: 0 1rem;
}

/* 注意書きリスト（見切れ防止＋黄昏色マーカー） */
.warnings {
  list-style: none; /* デフォルトマーカーを消す */
  padding-left: 0;
  margin: 0.5rem 0;
}

.warnings li {
  position: relative;
  padding-left: 1.8rem; /* マーカー分の余白 */
}

.warnings li::before {
  content: "⚠";
  position: absolute;
  left: 0.2rem; /* 少し右に寄せて見切れ防止 */
  color: #d97b3d; /* 夕陽色 */
  font-size: 1rem;
}

.credit, .shell-credit {
  font-size: 0.85rem;
  color: #5a4638;
}

footer nav a {
  color: #fff8f0;
  text-decoration: none;
  margin: 0 0.5rem;
}

footer nav a:hover {
  text-decoration: underline;
}








/* =========================
   夕暮れ廃墟ナビゲーション調整
   ========================= */

/* ナビ全体の縦位置を中央揃え */
.site-nav {
  display: flex;
  align-items: center; /* 縦中央揃え */
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 0.75rem;
}

/* サブメニューを持つ項目の親設定 */
.site-nav .has-submenu {
  position: relative;
  display: inline-block; /* 親と子を一体化 */
}

/* 親リンクの高さ・余白を統一 */
.site-nav .has-submenu > a {
  display: inline-block;
  line-height: 1.4;
  padding: 0.35rem 0.75rem;
  vertical-align: middle;
}

/* サブメニュー本体 */
.site-nav .submenu {
  position: absolute;
  top: calc(100% - 2px); /* 2pxかぶせて隙間ゼロ */
  left: 50%;
  transform: translateX(-50%);
  background: rgba(218, 82, 28, 0.95);
  padding: 0.5rem 0;
  margin: 0;
  list-style: none;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  min-width: 160px;
  z-index: 200;
}

/* サブメニュー項目 */
.site-nav .submenu li {
  text-align: center;
}

.site-nav .submenu a {
  display: block;
  padding: 0.4rem 1rem;
  color: #fff8f0;
  text-decoration: none;
  white-space: nowrap;
}

.site-nav .submenu a:hover {
  background: rgba(255, 248, 240, 0.16);
}

/* 透明ヒットエリア（橋渡し） */
.site-nav .submenu::before {
  content: "";
  position: absolute;
  top: -10px; /* 上に10px伸ばす */
  left: 0;
  width: 100%;
  height: 10px;
  background: transparent;
}

/* ホバー・フォーカス時に表示 */
.site-nav .has-submenu:hover .submenu,
.site-nav .has-submenu:focus-within .submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0.2rem);
}