/* ここから下をコピーして【パソコン版CSS】に貼ってください */

/* 1. 設定変数 */
:root {
  --main-color: #d20000;
  --accent-color: #e60012;
  --text-main: #333333;
  --text-sub: #666666;
  --bg-color: #ffffff;
  --bg-light: #f9f9f9;
  --site-width: 1024px;
  --font-base: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

/* 2. リセット & 基本設定 */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-base);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-main);
  background: var(--bg-color);
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

a {
  color: var(--main-color);
  text-decoration: none;
  transition: opacity 0.3s;
}
a:hover {
  opacity: 0.7;
  text-decoration: underline;
}

/* 3. ヘッダーエリア */
#header {
  width: 100%;
  border-bottom: 5px solid var(--main-color);
  padding: 20px 0;
  background: #fff;
}
#header #hgroup {
  max-width: var(--site-width);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
#site_title {
  font-size: 1.8rem;
  font-weight: bold;
}
#site_title a { color: #000; }

#head_nav { margin-top: 10px; }
#head_nav ul {
  display: flex;
  list-style: none;
  gap: 10px;
}
#head_nav ul li a {
  display: inline-block;
  padding: 8px 15px;
  background: var(--text-main);
  color: #fff;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: bold;
}
#head_nav ul li a:hover {
  background: var(--main-color);
  text-decoration: none;
}

/* 4. レイアウト構造 (Grid System) */
#content {
  max-width: var(--site-width);
  margin: 40px auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 40px;
  align-items: start;
}
#main { min-width: 0; }

/* 5. メインコンテンツ装飾 */
#page_title h2 {
  font-size: 1.8rem;
  border-left: 8px solid var(--main-color);
  padding-left: 15px;
  margin-bottom: 30px;
  background: var(--bg-light);
  padding: 15px;
}
.bx-wrapper {
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  margin-bottom: 40px !important;
  border-radius: 8px;
  overflow: hidden;
}
.article_box, #topics { margin-bottom: 40px; }
#topics {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
}
#topics h2 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: var(--main-color);
  border-bottom: 2px solid #eee;
  padding-bottom: 10px;
}
#topics dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px 20px;
}
#topics dt {
  color: var(--main-color);
  font-weight: bold;
}

/* 6. サイドバー装飾 */
#global_nav, #blog, #qrcode {
  margin-bottom: 30px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 5px;
  overflow: hidden;
}
#sidebar h2 {
  background: var(--main-color);
  color: #fff;
  padding: 10px 15px;
  font-size: 1rem;
  font-weight: bold;
}
#global_nav dl a {
  display: block;
  padding: 12px 15px;
  border-bottom: 1px solid #eee;
  transition: background 0.2s;
}
#global_nav dl a:hover {
  background: var(--bg-light);
  color: var(--main-color);
  text-decoration: none;
}

/* 7. フッター */
#footer {
  background: #222;
  color: #ccc;
  padding: 40px 0;
  margin-top: 60px;
}
#footer .inner {
  max-width: var(--site-width);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#footer address { font-style: normal; }
/* ==========================================================================
   修正: パンくずリスト（ホーム ＞ 〇〇）のデザイン
   ========================================================================== */
#pnkz {
  width: 100%;
  max-width: var(--site-width);
  margin: 15px auto;
  padding: 0 20px;
  /* 背景画像を廃止したため、アイコン等をCSSで追加します */
}

#pnkz ul {
  display: flex;       /* 横並びにする */
  flex-wrap: wrap;     /* スマホなどで折り返す */
  align-items: center; /* 上下中央揃え */
  list-style: none;    /* 点を消す */
  padding: 0;
}

#pnkz li {
  font-size: 0.9rem;
  color: #666;
  display: flex;
  align-items: center;
}

/* リンク（ホームなど）のデザイン */
#pnkz li a {
  color: #333;
  text-decoration: none;
  display: inline-block;
  padding: 5px 0;
}

#pnkz li a:hover {
  color: var(--main-color);
  text-decoration: underline;
}

/* 2つ目以降の項目の前に「＞」記号を入れる */
#pnkz li:not(:first-child)::before {
  content: "＞";          /* ここで矢印を表示 */
  margin: 0 10px;         /* 矢印の左右の余白 */
  color: #ccc;
  font-family: monospace; /* 記号の形を整える */
  font-weight: bold;
}

/* 先頭の項目の前に「◇」または家のアイコンを入れる */
#pnkz li:first-child::before {
  content: "◇";           /* 元のデザインに合わせて菱形、または "🏠" でもOK */
  margin-right: 8px;
  color: var(--main-color); /* 赤色にする */
  font-weight: bold;
}

/* ==========================================================================
   修正: ページタイトル（黒い背景を再現）
   ========================================================================== */
/* 元のような「重厚感」を出したい場合は以下を追加してください */
#header {
  /* 下線を消して、全体の背景色をつける場合 */
  border-bottom: none;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* ページごとのタイトルエリアのデザイン */
#lead_area, 
#page_title {
  background: #333; /* 元の画像の代わりに濃いグレー背景 */
  color: #fff;
  padding: 30px 0;
  margin-bottom: 20px;
  /* パターン画像を使いたい場合はここにbackground-imageを指定しますが、
     今回はCSSだけで高級感を出すグラデーションを使います */
  background: linear-gradient(to bottom, #444, #222);
}

#page_title h2 {
  max-width: var(--site-width);
  margin: 0 auto;
  padding: 0 20px;
  border-left: 10px solid var(--main-color); /* 左の赤い線 */
  font-size: 2rem;
  background: transparent; /* 前回の設定をリセット */
  color: #fff;             /* 文字色を白に */
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}