/* ------------------------------
   全体の基本設定
------------------------------ */

/* 背景と文字色 */
body {
  background-color: #ffffff;
  color: #333333;
  font-family: 'Noto Serif JP', serif;
  line-height: 1.8;
}

/* リンクカラー */
a {
  color: #d4af37;
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover {
  color: #b9962a;
  text-decoration: underline;
}

/* 画像角丸 */
img {
  border-radius: 8px;
}

/* ------------------------------
   ヘッダー（サイトタイトル・ナビ）
------------------------------ */
.header {
  background-color: #ffffff;
  border-bottom: 1px solid #eee;
  padding: 10px 0;
}

.header .site-title a {
  color: #1a1d2e;
  font-size: 26px;
  font-weight: bold;
  text-decoration: none;
}

/* ナビゲーションメニュー */
.global-nav {
  background-color: #faf7f2;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}
.global-nav li a {
  color: #555;
  font-size: 14px;
  padding: 12px 16px;
}
.global-nav li a:hover {
  background-color: #f0ece5;
  color: #d4af37;
}

/* ------------------------------
   トップページの記事カード
------------------------------ */
.entry-card-wrap {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  margin-bottom: 20px;
  overflow: hidden;
  transition: transform 0.2s ease;
}
.entry-card-wrap:hover {
  transform: translateY(-3px);
}
.entry-card-thumb img {
  width: 100%;
  display: block;
  border-bottom: 1px solid #eee;
}
.entry-card-content {
  padding: 12px 16px;
}
.entry-card-title {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 8px;
}
.entry-card-snippet {
  font-size: 13px;
  color: #666;
}

/* ------------------------------
   記事ページ内スタイル
------------------------------ */

/* 見出し（h2・h3） */
.entry-content h2 {
  font-size: 1.4em;
  border-left: 6px solid #d4af37;
  padding-left: 10px;
  margin: 30px 0 15px;
}
.entry-content h3 {
  font-size: 1.2em;
  border-bottom: 2px solid #d4af37;
  padding-bottom: 3px;
  margin: 25px 0 10px;
}

/* 引用デザイン */
blockquote {
  border-left: 4px solid #d4af37;
  padding-left: 12px;
  color: #555;
  font-style: italic;
  margin: 20px 0;
}

/* ------------------------------
   サイドバー
------------------------------ */
.sidebar {
  background: #faf7f2;
  padding: 15px;
  border-radius: 8px;
  font-size: 14px;
}
.sidebar h3 {
  border-bottom: 2px solid #d4af37;
  font-size: 16px;
  margin-bottom: 10px;
}

/* ------------------------------
   フッター
------------------------------ */
.footer {
  background-color: #faf7f2;
  border-top: 1px solid #eee;
  padding: 20px;
  font-size: 13px;
  color: #666;
  text-align: center;
}
.footer a {
  color: #d4af37;
}
.footer a:hover {
  color: #b9962a;
}

/* ------------------------------
   ボタン（CTA・リンク）
------------------------------ */
button,
.wp-block-button__link {
  background-color: #d4af37;
  color: #ffffff;
  border: none;
  border-radius: 4px;
  padding: 8px 16px;
  transition: background-color 0.2s ease;
}
button:hover,
.wp-block-button__link:hover {
  background-color: #b9962a;
}

