/* ===================================
 * リアルタイムニュースNAVI 統合最適化CSS
 * 基本: トレンドネット 最終最適化版CSS - 2025年3月版
 * 改修: カード分離型レイアウト + モバイル最適化 + CWV + CTR向上
 * v2: 回遊最適化 + 設置位置最適化 + モバイルナビ改善
 * =================================== */

/* ===================================
 * 1. CSS変数 - カラーシステム（心理的CTR最適化版）
 * =================================== */
:root {
  /* プライマリカラー - 信頼性・権威性 */
  --primary-hue: 280;
  --primary-sat: 70%;
  --primary-base: #6a1b9a;
  --primary-light: #9c27b0;
  --primary-dark: #4a148c;

  /* アクセントカラー - 暖色系に変更（行動喚起・緊急感） */
  --accent-base: #e8553d;
  --accent-light: #ff6e40;
  --accent-dark: #c62828;

  /* テキストカラー */
  --text-base: #333;
  --text-light: #666;
  --text-lighter: #888;
  --text-dark: #111;

  /* 背景カラー */
  --bg-base: #f9f9fa;
  --card-base: #fff;
  --border-color: #e0e0e0;

  /* エフェクト */
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.08);
  --shadow-md: 0 3px 6px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 20px rgba(0,0,0,0.15);
  --shadow-hover: 0 12px 32px rgba(0,0,0,0.18);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* タイポグラフィ */
  --font-heading: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
  --font-body: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Hiragino Kaku Gothic ProN", sans-serif;

  /* スペーシング */
  --spacing-xs: 0.25em;
  --spacing-sm: 0.5em;
  --spacing-md: 1em;
  --spacing-lg: 2em;
  --spacing-xl: 3em;

  /* レイアウト */
  --content-width-sm: 650px;
  --content-width-md: 800px;
  --content-width-lg: 1200px;
}

/* ===================================
 * 2. グローバルリセット
 * =================================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body * {
  max-width: 100%;
  box-sizing: border-box;
}
img {
  max-width: 100% !important;
  height: auto !important;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-base);
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.4;
  margin: 1.5em 0 0.8em;
}
p {
  margin-bottom: 1em;
  line-height: 1.9;
}
ul, ol {
  margin: 1em 0;
  padding-left: 1.5em;
}

/* コンテナリセット */
#container, #container-inner, #content, #content-inner,
#wrapper, #main, #main-inner, .entry, .entry-content {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
  float: none;
  position: relative;
  overflow-x: hidden;
  transform: none;
}

/* サイドバー非表示 */
#box1, #box2 { display: none; }

/* ===================================
 * 3. 検索ボックスモジュール
 * =================================== */
.hatena-module-search-box {
  margin: 20px 0;
  padding: 0;
}
.hatena-module-search-box .hatena-module-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid #e0e0e0;
}
.search-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}
.search-module-input {
  width: 100%;
  padding: 18px 20px;
  font-size: 17px;
  border: 2px solid #d0d0d0;
  border-radius: 8px;
  background-color: #ffffff;
  transition: all 0.3s ease;
  box-sizing: border-box;
  -webkit-appearance: none;
  appearance: none;
}
.search-module-input:focus {
  outline: none;
  border-color: var(--primary-base);
  box-shadow: 0 0 0 3px rgba(106, 27, 154, 0.1);
}
.search-module-input::placeholder {
  color: #999999;
  font-size: 16px;
}
.search-module-button {
  width: 100%;
  padding: 20px 30px;
  font-size: 18px;
  font-weight: bold;
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent-base) 0%, var(--accent-dark) 100%);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-sizing: border-box;
  -webkit-appearance: none;
  appearance: none;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  box-shadow: 0 4px 12px rgba(232, 85, 61, 0.3);
  letter-spacing: 0.5px;
}
.search-module-button:hover {
  background: linear-gradient(135deg, var(--accent-dark) 0%, #a81b2c 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(232, 85, 61, 0.4);
}
.search-module-button:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(232, 85, 61, 0.3);
}
.search-module-button::before {
  content: "\1f50d ";
  font-size: 18px;
  margin-right: 6px;
}

@media screen and (min-width: 768px) {
  .hatena-module-search-box { margin: 25px 0; }
  .hatena-module-search-box .hatena-module-title { font-size: 20px; margin-bottom: 18px; }
  .search-form { flex-direction: row; gap: 12px; }
  .search-module-input { flex: 1; padding: 20px 22px; font-size: 17px; }
  .search-module-button { width: auto; min-width: 160px; padding: 20px 40px; font-size: 18px; }
}
@media screen and (min-width: 1024px) {
  .hatena-module-search-box { margin: 30px 0; }
  .search-module-input { padding: 22px 24px; font-size: 18px; }
  .search-module-input::placeholder { font-size: 17px; }
  .search-module-button { min-width: 180px; padding: 22px 50px; font-size: 19px; }
  .search-module-button:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(232, 85, 61, 0.45); }
}

/* ===================================
 * 4. ヘッダー
 * =================================== */
body {
  font-family: 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', Meiryo, sans-serif !important;
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale !important;
}
#blog-title {
  background-color: var(--card-base);
  box-shadow: var(--shadow-md);
  text-align: center;
  padding: 40px 20px;
  margin-bottom: 25px;
  position: relative;
  overflow: hidden;
}
#blog-title::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: linear-gradient(to right, var(--primary-base), var(--accent-base));
}
#title { font-size: 2.2rem; margin: 10px 0; }
#title a {
  display: inline-block;
  position: relative;
  background: linear-gradient(90deg, var(--primary-base), var(--accent-base));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  font-size: 28px !important;
  font-weight: 700 !important;
  line-height: 1.4 !important;
  transition: transform 0.3s ease;
}
#title a:hover { transform: translateY(-2px); }
#blog-description {
  color: var(--text-light);
  font-size: 1rem;
  font-weight: 400;
  margin-top: 10px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  font-size: 16px !important;
  line-height: 1.6 !important;
}

/* パンくずリスト */
.breadcrumb {
  margin: 0 auto 20px;
  max-width: var(--content-width-md);
  padding: 0 20px;
  width: 100%;
  box-sizing: border-box;
}
.breadcrumb-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-size: 14px !important;
  line-height: 1.4 !important;
  color: var(--text-light);
}
.breadcrumb-link, .breadcrumb-child-link { color: var(--text-light); }
.breadcrumb-link:hover, .breadcrumb-child-link:hover { color: var(--primary-base); }
.breadcrumb-gt { margin: 0 8px; color: #ccc; }

/* ===================================
 * 5. トップページ記事一覧 - カード分離型レイアウト
 * =================================== */
.archive-entries {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
  gap: 30px;
  max-width: var(--content-width-lg);
  margin: 0 auto;
  padding: 25px;
}
.archive-entry {
  background-color: var(--card-base);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  position: relative;
  height: auto;
  display: flex !important;
  flex-direction: column !important;
  margin-bottom: 20px;
  padding: 0;
  content-visibility: auto;
  contain-intrinsic-size: 0 400px;
}
.archive-entry:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.entry-thumb-link {
  display: block;
  position: static;
  width: 100%;
  height: auto;
  overflow: hidden;
  z-index: auto;
  order: -1;
  aspect-ratio: 16 / 9;
  background-color: var(--bg-base);
}
.entry-thumb {
  width: 100% !important;
  height: 100% !important;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.5s ease;
}
.archive-entry:hover .entry-thumb { transform: scale(1.05); }
.entry-thumb-link::after { display: none !important; }
.archive-entry-header {
  position: static;
  bottom: auto; left: auto; width: auto;
  padding: 16px 20px 8px;
  z-index: auto;
  background-color: var(--card-base);
}
.archive-entry-header .entry-title {
  font-size: 1.15rem;
  margin: 0 0 4px 0;
  line-height: 1.4;
  text-shadow: none;
}
.archive-entry-header .entry-title-link {
  color: var(--text-dark) !important;
  -webkit-text-fill-color: var(--text-dark) !important;
  text-shadow: none !important;
  font-weight: 700;
  display: inline;
}
.archive-entry-header .entry-title-link:hover {
  color: var(--accent-base) !important;
  -webkit-text-fill-color: var(--accent-base) !important;
}
.archive-entry-header .entry-title-link::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 10;
  cursor: pointer;
}
.archive-date {
  color: var(--text-lighter);
  font-size: 0.85rem !important;
  margin-top: 0;
  text-shadow: none !important;
  font-weight: 400;
}
.archive-date a { color: var(--text-lighter); }
.archive-date a:hover { color: var(--accent-base); }
.categories {
  display: flex !important;
  flex-wrap: wrap;
  gap: 6px;
  padding: 8px 20px 16px;
  order: 10;
}
.entry-category-link, .archive-category-link {
  display: inline-block !important;
  padding: 3px 10px;
  background-color: rgba(106, 27, 154, 0.08);
  color: var(--primary-base) !important;
  font-size: 0.72rem;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  transition: all var(--transition-fast);
  border: 1px solid rgba(106, 27, 154, 0.15);
  position: relative;
  z-index: 11;
}
.entry-category-link:hover, .archive-category-link:hover {
  background-color: var(--primary-base);
  color: #fff !important;
  border-color: var(--primary-base);
}
.archive-entry-body, .entry-description { display: none; }

/* ===================================
 * 6. 記事ページ
 * =================================== */
.entry {
  background-color: var(--card-base);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  margin: 0 auto 30px;
  max-width: 900px;
  padding: 30px 60px;
  width: 100%;
  text-align: left;
  box-sizing: border-box;
  display: block;
  float: none;
}
.entry-header {
  margin-bottom: 35px;
  position: relative;
}
.entry-header::after {
  content: "";
  display: block;
  width: 60px; height: 3px;
  background: linear-gradient(to right, var(--primary-base), var(--primary-light));
  margin-top: 20px;
}
.entry-date {
  color: var(--text-light);
  font-size: 1rem;
  margin-bottom: 15px;
  display: block;
}
.entry-title {
  font-size: 26px !important;
  line-height: 1.4 !important;
  font-weight: 700 !important;
  margin: 0 0 20px;
  color: var(--text-dark);
}
.entry-title a {
  font-size: 26px !important;
  line-height: 1.4 !important;
  color: var(--text-dark);
}
.archive-entry-header .entry-title { font-size: 1.15rem !important; }
.archive-entry-header .entry-title a { font-size: inherit !important; }
.entry-categories a { font-size: 14px !important; }
.date-time { font-size: 14px !important; }

/* 記事本文 */
.entry-content {
  font-size: 1.5rem;
  line-height: 1.9;
  letter-spacing: 0.01em;
  padding: 0;
  margin: 0;
  text-align: left;
  max-width: 760px !important;
  margin: 0 auto !important;
  word-wrap: break-word !important;
  color: #333333 !important;
}
.entry-content p {
  margin-bottom: 1.5em;
  text-align: left;
  line-height: 1.9;
  font-size: 1.5rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}
.entry-content h2 {
  font-size: 1.85rem;
  border-bottom: 2px solid var(--accent-base);
  padding-bottom: 0.5em;
  margin-top: 2em;
  text-align: left;
  font-weight: 700 !important;
  line-height: 1.4 !important;
}
.entry-content h3 {
  font-size: 1.6rem;
  border-left: 4px solid var(--primary-base);
  padding-left: 0.8em;
  margin-top: 1.8em;
  color: var(--primary-dark);
  text-align: left;
  font-weight: 600 !important;
  line-height: 1.4 !important;
}
.entry-content h4, .entry-content h5, .entry-content h6 {
  font-size: 1.2em !important;
  line-height: 1.4 !important;
  margin: 1.5em 0 0.7em !important;
  font-weight: 600 !important;
}
.entry-content ul, .entry-content ol {
  margin-bottom: 1.5em !important;
  padding-left: 2em !important;
}
.entry-content ul li, .entry-content ol li {
  font-size: 18px !important;
  line-height: 1.7 !important;
  margin-bottom: 0.8em !important;
}
.entry-content blockquote {
  font-size: 17px !important;
  line-height: 1.7 !important;
  padding: 0.8em !important;
  margin: 1.2em 0 !important;
  text-align: left;
}
.entry-content div[style*="background-color"],
.entry-content div.urllist-entry-body {
  font-size: 17px !important;
  line-height: 1.7 !important;
}
.entry-content table, .entry-content th, .entry-content td {
  font-size: 17px !important;
  line-height: 1.5 !important;
}
.entry-content figcaption {
  font-size: 14px !important;
  line-height: 1.5 !important;
  margin-top: 0.5em !important;
}
.entry-content pre, .entry-content code {
  font-size: 15px !important;
  line-height: 1.5 !important;
}
.entry-content a {
  color: var(--primary-base);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-bottom var(--transition-base);
  font-weight: 500;
}
.entry-content a:hover {
  border-bottom: 1px solid var(--primary-base);
  color: var(--accent-base);
}
.entry-content img {
  border-radius: var(--radius-md);
  display: block;
  margin: 2.2em auto;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.entry-content img:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.figure-image { margin: 2.5em 0; }
figcaption {
  color: var(--text-light);
  font-size: 0.9rem;
  text-align: center;
  margin-top: 1em;
}
.entry-content strong { font-weight: 700 !important; }
.entry-content em { font-style: italic !important; }

/* ===================================
 * 7. 目次
 * =================================== */
ul.table-of-contents { display: none; }
ul.table-of-contents.show {
  display: block;
  background-color: #f9f9f9;
  border: 1px solid #eee;
  border-radius: var(--radius-md);
  padding: 0.6em;
  margin: 1.2em auto 1.8em auto;
  max-width: 95%;
  counter-reset: item;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
  list-style-type: none;
  position: static;
  text-align: left;
}
ul.table-of-contents.show::before {
  content: "\1f4d1 \76ee\6b21";
  display: block;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5em;
  padding-bottom: 0.3em;
  border-bottom: 1px solid #eee;
  color: var(--primary-base);
  letter-spacing: 0.03em;
  background-color: #f5f5f5;
  border-radius: 4px;
  padding: 0.2em;
}
ul.table-of-contents li {
  margin-bottom: 0.4em;
  list-style-type: none;
  position: static;
  padding-left: 0.3em;
  overflow: visible;
  max-width: 100%;
  text-align: left;
}
ul.table-of-contents a {
  color: var(--text-base);
  display: inline-block;
  line-height: 1.3;
  padding-left: 5px;
  border-left: 2px solid transparent;
  transition: all var(--transition-base);
  font-size: 1.1rem;
  font-weight: 500;
  position: static;
  word-break: break-word;
  text-align: left;
}
ul.table-of-contents a:hover {
  color: var(--primary-base);
  border-left-color: var(--primary-base);
  padding-left: 8px;
  background-color: rgba(106, 27, 154, 0.05);
}
ul.table-of-contents ul li { margin-left: 1em; margin-bottom: 0.3em; text-align: left; }
ul.table-of-contents ul li a { font-size: 1rem; font-weight: 400; text-align: left; }

.toc-toggle-button {
  background: linear-gradient(to right, var(--primary-base), var(--primary-light));
  color: white;
  border: none;
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  margin: 1.2em auto;
  display: block;
  box-shadow: 0 3px 8px rgba(106,27,154,0.3);
  transition: all var(--transition-base);
  position: static;
  z-index: 5;
}
.toc-toggle-button:hover {
  background: linear-gradient(to right, var(--primary-light), var(--accent-base));
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(106,27,154,0.4);
}
.toc-toggle-button.open { background: linear-gradient(to right, #555, #777); }
.toc-toggle-button::before { content: "\1f4d1 "; margin-right: 5px; }

/* ===================================
 * 8. モジュール（注目記事・最新記事）
 * =================================== */
.entry-footer-modules {
  max-width: var(--content-width-md);
  margin: 0 auto;
  width: 100%;
  text-align: left;
  display: block;
  box-sizing: border-box;
}
.hatena-module {
  background-color: var(--card-base);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  margin-bottom: 30px;
  padding: 25px;
  transition: box-shadow var(--transition-base);
  position: relative;
  overflow: hidden;
  display: block;
  font-size: .85rem;
  box-sizing: border-box;
  width: 100%;
}
.hatena-module::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: linear-gradient(to bottom, var(--primary-base), var(--accent-base));
}
.hatena-module:hover { box-shadow: var(--shadow-lg); }
.hatena-module-title {
  color: var(--primary-base);
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0 0 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid #f0f0f0;
  position: relative;
  display: block;
  border-top: none;
  text-align: left;
}
.hatena-module-title::after {
  content: "";
  position: absolute;
  bottom: -2px; left: 0;
  width: 60px; height: 2px;
  background: linear-gradient(to right, var(--primary-base), var(--accent-base));
}
.hatena-module-title a { color: var(--primary-base); text-decoration: none; text-align: left; }
.hatena-module-title a:hover { text-decoration: none; color: var(--primary-light); }
.hatena-urllist {
  list-style: none;
  margin: 0; padding: 0;
  display: block;
  line-height: 1.4;
  text-align: left;
}
.hatena-urllist li {
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 15px;
  padding-bottom: 15px;
  transition: transform var(--transition-base);
  list-style-type: none;
  text-align: left;
}
.hatena-urllist li:hover { transform: translateY(-5px); }
.hatena-urllist li:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.urllist-with-thumbnails li {
  display: flex !important;
  flex-direction: row !important;
  align-items: flex-start;
  text-align: left;
}
.urllist-image-link {
  flex: 0 0 120px;
  width: 120px;
  min-width: 120px;
  height: 80px;
  margin-right: 10px;
  overflow: hidden;
  border-radius: var(--radius-md);
  position: relative;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  transition: all var(--transition-base);
  display: block;
  text-decoration: none;
  top: 0;
}
.urllist-image-link:hover {
  box-shadow: 0 5px 15px rgba(0,0,0,0.15);
  transform: translateY(-3px);
  top: 0;
}
.urllist-image {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  transition: transform 0.5s ease;
}
.urllist-image-link:hover .urllist-image { transform: scale(1.05); }
.urllist-with-thumbnails .urllist-item-inner {
  flex: 1;
  display: flex !important;
  flex-direction: row !important;
  align-items: flex-start;
  gap: 10px;
  padding: 1px;
  text-align: left;
}
.urllist-title-link {
  color: var(--text-base);
  display: block;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 5px;
  text-decoration: none;
  text-align: left;
}
.urllist-title-link:hover { color: var(--primary-base); text-decoration: none; }
.urllist-date-link {
  display: block;
  color: #666;
  font-size: 0.8rem;
  margin-top: 3px;
  text-align: left;
}
.urllist-date-link a { color: #666; text-decoration: none; }
.urllist-see-more {
  border-top: 1px solid var(--border-color);
  margin-top: 20px;
  padding-top: 15px;
  text-align: center;
  display: block;
}
.urllist-see-more-link {
  background: linear-gradient(to right, var(--primary-base), var(--primary-light));
  border-radius: 50px;
  color: white;
  display: inline-block;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 8px 20px;
  box-shadow: 0 3px 8px rgba(106,27,154,0.3);
  transition: all var(--transition-base);
  text-decoration: none;
}
.urllist-see-more-link:hover {
  background: linear-gradient(to right, var(--primary-light), var(--accent-base));
  box-shadow: 0 6px 12px rgba(106,27,154,0.4);
  transform: translateY(-3px);
  text-decoration: none;
}

/* ===================================
 * 9. 関連記事
 * =================================== */
.related-entries {
  margin: 30px auto;
  background-color: #f9f9f9;
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
  display: block;
  max-width: var(--content-width-md);
  width: 100%;
  box-sizing: border-box;
}
.related-entries-title {
  color: var(--primary-base);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #eee;
  position: relative;
  display: block;
  text-align: left;
}
.related-entries-title::after {
  content: "";
  position: absolute;
  bottom: -2px; left: 0;
  width: 60px; height: 2px;
  background: linear-gradient(to right, var(--primary-base), var(--accent-base));
}
.related-entries-list {
  list-style: none;
  margin: 0; padding: 0;
  display: block;
  text-align: left;
}
.related-entry {
  background-color: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: flex !important;
  align-items: center;
  margin-bottom: 15px;
  overflow: hidden;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  list-style-type: none;
  text-align: left;
}
.related-entry:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.related-entry:last-child { margin-bottom: 0; }
.related-entry-thumb {
  flex: 0 0 120px;
  width: 120px;
  min-width: 120px;
  height: 80px;
  overflow: hidden;
  position: relative;
  display: block;
}
.related-entry-thumb img {
  height: 100% !important;
  object-fit: cover !important;
  width: 100% !important;
  transition: transform 0.5s ease;
  display: block;
}
.related-entry:hover .related-entry-thumb img { transform: scale(1.05); }
.related-entry-content {
  flex: 1;
  padding: 10px 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}
.related-entry-title {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
  margin: 0 0 3px 0;
  display: block;
  text-align: left;
}
.related-entry-title a { color: var(--text-base); text-decoration: none; text-align: left; }
.related-entry-title a:hover { color: var(--primary-base); text-decoration: none; }
.related-entry-date {
  color: var(--text-light);
  font-size: 0.8rem;
  display: block;
  margin-top: 2px;
  text-align: left;
}

/* ===================================
 * 10. ページネーション
 * =================================== */
.pager {
  margin: 35px auto;
  max-width: var(--content-width-md);
  display: flex;
  justify-content: space-between;
  gap: 15px;
}
.pager-prev, .pager-next { flex: 1; }
.pager-prev a, .pager-next a {
  background-color: var(--card-base);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  color: var(--text-base);
  display: block;
  font-size: 0.95rem;
  padding: 15px;
  text-decoration: none;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.pager-prev a { padding-left: 25px; text-align: left; }
.pager-next a { padding-right: 25px; text-align: right; }
.pager-prev a:hover, .pager-next a:hover {
  background-color: #f8f8f8;
  box-shadow: var(--shadow-lg);
  color: var(--primary-base);
  transform: translateY(-3px);
}
.pager-arrow { color: var(--primary-base); font-weight: bold; }

/* ===================================
 * 11. コメント欄
 * =================================== */
.comment-box {
  margin-top: 30px;
  border-top: 1px solid var(--border-color);
  padding-top: 20px;
  text-align: left;
  font-size: 16px !important;
  line-height: 1.6 !important;
}
.comment-user-name { font-size: 15px !important; font-weight: 600 !important; }
.comment-content { font-size: 16px !important; line-height: 1.6 !important; }
.leave-comment-title {
  color: var(--primary-base);
  cursor: pointer;
  display: inline-block;
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 15px;
  position: relative;
  text-align: left;
}
.leave-comment-title::after {
  content: "";
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background-color: var(--primary-base);
  transition: width var(--transition-base);
}
.leave-comment-title:hover::after { width: 100%; }

/* ===================================
 * 12. カスタムHTMLボックス・特殊ブロック
 * =================================== */
.entry-content div[style*="background-color: #f8f9fa"][style*="border-left: 4px solid"],
.entry-content div[style*="background-color:#f8f9fa"][style*="border-left:4px solid"] {
  padding: 1em; margin: 1.2em 0;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  text-align: left;
}
.entry-content div[style*="border-left: 4px solid"] p[style*="font-weight: bold"],
.entry-content div[style*="border-left:4px solid"] p[style*="font-weight:bold"] {
  margin: 0.5em 0 0.2em; padding: 0.2em;
  background-color: #f0f4f8; border-radius: 3px; text-align: left;
}
.entry-content div[style*="border-left: 4px solid"] div p,
.entry-content div[style*="border-left:4px solid"] div p {
  margin: 0 0 0.6em 0.8em;
  padding-left: 0.4em;
  border-left: 1px solid #e0e0e0;
  line-height: 1.7;
  text-align: left;
}
.entry-content div[style*="background-color"][style*="border"],
.entry-content div[style*="background-color"][style*="padding"] {
  padding: 1em; margin: 1.2em 0; text-align: left;
}
.entry-content div[style*="background-color: #fce8e6"],
.entry-content div[style*="background-color:#fce8e6"] { padding: 1em; text-align: left; }
.entry-content div[style*="background-color: #f8f9fa"][style*="border: 1px dashed"],
.entry-content div[style*="background-color:#f8f9fa"][style*="border:1px dashed"] { padding: 1em; text-align: left; }
.entry-content div[style*="background-color: #e8f0fe"],
.entry-content div[style*="background-color:#e8f0fe"] { padding: 1em; text-align: left; }

.point-box, .success-box, .warning-box, .info-box {
  background-color: #f9f9f9;
  border-left: 4px solid;
  border-radius: var(--radius-md);
  margin: 1.2em 0; padding: 1em;
  font-size: 1.05rem; text-align: left;
}
.point-box { border-color: var(--primary-base); background-color: rgba(106, 27, 154, 0.05); position: relative; padding-top: 1.8em; }
.point-box:before {
  position: absolute; top: 0; left: 0;
  background: var(--primary-base); color: white;
  padding: 0.2em 0.8em; font-size: 0.9em; font-weight: bold;
  border-radius: 0 0 5px 0;
}
.point-box *, .success-box *, .warning-box *, .info-box * { text-align: left; }
.success-box { border-color: #28a745; background-color: rgba(40, 167, 69, 0.05); }
.warning-box { border-color: #ffc107; background-color: rgba(255, 193, 7, 0.05); }
.info-box { border-color: #17a2b8; background-color: rgba(23, 162, 184, 0.05); }
.entry-content div[style*="background-color"] *, .entry-content div[style*="border"] * { text-align: left; }
table, th, td { text-align: inherit; }

/* ===================================
 * 13. モバイル対応
 * =================================== */
@media (max-width: 767px) {
  #blog-title { padding: 30px 15px; }
  #title { font-size: 1.8rem; }
  #title a { font-size: 24px !important; }
  #blog-description { font-size: 14px !important; font-size: 0.95rem; }
  .archive-entries { grid-template-columns: 1fr; padding: 15px; gap: 20px; }
  .archive-entry-header .entry-title { font-size: 1.05rem !important; }
  .entry {
    padding: 15px 18px;
    margin: 0 auto 15px;
    width: 96%;
    max-width: none;
  }
  .entry-title, .entry-title a { font-size: 22px !important; line-height: 1.3 !important; }
  .entry-content {
    font-size: 1.3rem; line-height: 2; padding: 0;
    overflow-x: hidden; text-align: left;
  }
  .entry-content p { margin-bottom: 1.8em; line-height: 2; font-size: 1.3rem; }
  .entry-content p br { display: block; content: ""; margin-top: 0.8em; }
  .entry-content h2 { font-size: 1.5rem; margin-top: 2.2em; margin-bottom: 1em; }
  .entry-content h3 { font-size: 1.3rem; margin-top: 2em; margin-bottom: 0.8em; }
  .entry-content ul li, .entry-content ol li {
    margin-bottom: 0.8em; line-height: 1.8; font-size: 16px !important;
  }
  .entry-content div[style*="background-color"][style*="border"],
  .entry-content div[style*="background-color"][style*="padding"] {
    padding: 1em; margin: 1.5em 0;
  }
  .entry-content div[style*="border-left: 4px solid"] div p,
  .entry-content div[style*="border-left:4px solid"] div p {
    margin: 0 0 0.8em 0.6em; padding-left: 0.5em; line-height: 1.8;
  }
  .point-box, .success-box, .warning-box, .info-box { padding: 1.2em; margin: 1.5em 0; font-size: 1.1rem; }
  .point-box p, .success-box p, .warning-box p, .info-box p { line-height: 1.8; margin-bottom: 0.8em; }
  ul.table-of-contents.show { padding: 0.8em; margin: 1.5em auto; }
  ul.table-of-contents li { margin-bottom: 0.6em; }
  ul.table-of-contents a { font-size: 1rem; line-height: 1.5; }
  .hatena-module { padding: 20px; }
  .hatena-module-title { font-size: 1.15rem; }
  .urllist-image-link { flex: 0 0 90px; width: 90px; min-width: 90px; height: 60px; }
  .related-entries { padding: 15px; margin: 15px auto; width: 94%; }
  .related-entry-thumb { flex: 0 0 80px; width: 80px; min-width: 80px; height: 55px; }
  .related-entry-title { font-size: 0.95rem; }
  .pager { flex-direction: column; margin: 25px auto; width: 94%; }
  .pager-prev a, .pager-next a { font-size: 0.9rem; padding: 12px; }
  .entry-content p::after { content: ""; display: block; height: 0.2em; width: 100%; }
  .breadcrumb-inner { font-size: 12px !important; }
  .hatena-module-body { font-size: 14px !important; }
  .urllist-title-link { font-size: 14px !important; }
}
@media screen and (max-width: 480px) {
  #title a { font-size: 20px !important; }
  .entry-title, .entry-title a { font-size: 20px !important; }
  .entry-content p { font-size: 15px !important; line-height: 1.5 !important; margin-bottom: 1em !important; }
  .entry-content h2 { font-size: 1.4em !important; margin: 1.5em 0 0.7em !important; }
  .entry-content h3 { font-size: 1.2em !important; }
  .entry-content ul li, .entry-content ol li { font-size: 15px !important; line-height: 1.5 !important; margin-bottom: 0.6em !important; }
  .hatena-module-title { font-size: 15px !important; }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .entry-content { font-size: 1.4rem; line-height: 1.8; }
  .entry-content h2 { font-size: 1.7rem; }
  .entry-content h3 { font-size: 1.5rem; }
  .archive-entries { grid-template-columns: repeat(2, 1fr); gap: 25px; }
}

/* ===================================
 * 14. パフォーマンス最適化
 * =================================== */
@keyframes shimmer {
  0% { background-position: -300px 0; }
  100% { background-position: 300px 0; }
}
.entry-thumb.loading, .urllist-image.loading, .related-entry-thumb img.loading {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 300px 100%;
  animation: shimmer 1.5s infinite linear;
}
.image-placeholder {
  background-color: #f5f5f5;
  display: block; width: 100%; height: 0;
  padding-bottom: 56.25%; position: relative;
}
@font-face {
  font-family: 'Hiragino Sans';
  font-style: normal; font-weight: 400;
  font-display: swap;
  src: local('Hiragino Sans');
}
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* 広告スタイル */
ins.adsbygoogle[data-ad-layout="in-article"] {
  margin-left: auto; margin-right: auto;
  margin-bottom: 35px; margin-top: 35px;
  text-align: center; display: block;
  height: 282px; overflow: visible;
  max-width: 90%;
}
div[id^="aswift_"][id$="_host"]:has(+ ins.adsbygoogle[data-ad-layout="in-article"]),
ins.adsbygoogle[data-ad-layout="in-article"] div[id^="aswift_"][id$="_host"] {
  overflow: visible; height: 282px;
  margin: 0 auto; text-align: center;
}
ins.adsbygoogle[style*="height: 0"] { height: 282px; min-height: 250px; }
.google-auto-placed {
  margin-top: 25px !important;
  margin-bottom: 25px !important;
  max-width: 90%;
  margin-left: auto !important;
  margin-right: auto !important;
}
.entry-content ins.adsbygoogle {
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}

/* フォント統一 */
body, p, div, span, h1, h2, h3, h4, h5, h6, a, li, td, th {
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", "Yu Gothic", "YuGothic", "Meiryo", sans-serif;
}
span[style*="position: absolute"][style*="left: 0"] {
  position: relative; left: auto; margin-right: 8px; display: inline-block;
}
p[style*="position: relative"] > span[style*="position: absolute"] { left: 0.5em; }
body { text-rendering: optimizeSpeed; }
a:focus, button:focus { outline: 2px solid var(--primary-light); outline-offset: 2px; }

.hatena-module-body { font-size: 15px !important; line-height: 1.5 !important; }
.urllist-title-link { font-size: 15px !important; line-height: 1.5 !important; }
.urllist-entry-body { font-size: 14px !important; line-height: 1.5 !important; }
.urllist-date-link time { font-size: 13px !important; }
.entry-tags-wrapper { font-size: 14px !important; line-height: 1.6 !important; }
.entry-footer-section { font-size: 14px !important; line-height: 1.6 !important; }
#bottom-editarea { font-size: 14px !important; line-height: 1.5 !important; }
.copyright { font-size: 13px !important; }
.pager { font-size: 16px !important; line-height: 1.5 !important; }
.table-of-contents { font-size: 16px !important; line-height: 1.6 !important; }
.table-of-contents li { margin-bottom: 0.5em !important; }

/* ===================================
 * 15. グローバルナビゲーション
 * ダークネイビー: 信頼・権威・報道の正統性
 * =================================== */
.global-nav {
  background-color: #1b2845;
  overflow: hidden;
  contain: layout style;
  width: 100%;
  z-index: 100;
  position: relative;
}
.global-nav-inner {
  display: flex;
  align-items: center;
  max-width: var(--content-width-lg);
  margin: 0 auto;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  gap: 0;
  padding: 0 8px;
}
.global-nav-inner::-webkit-scrollbar { display: none; }
.global-nav-inner a {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 10px 14px;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.2s ease, color 0.2s ease;
  border-bottom: 2px solid transparent;
  flex-shrink: 0;
}
.global-nav-inner a:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-bottom-color: var(--accent-base);
}
.global-nav-inner a.nav-active {
  color: #fff;
  border-bottom-color: #e8553d;
  background-color: rgba(255, 255, 255, 0.08);
}
.global-nav-inner a.nav-breaking {
  color: var(--accent-light);
  font-weight: 700;
}
.global-nav-inner a.nav-breaking::before {
  content: "";
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--accent-light);
  border-radius: 50%;
  margin-right: 4px;
  vertical-align: middle;
  animation: nav-pulse 1.5s ease-in-out infinite;
}
@keyframes nav-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* ★ モバイルナビ: 文字サイズ・タップ領域を拡大（Google推奨48px準拠） */
@media (max-width: 767px) {
  .global-nav-inner {
    padding: 0 4px;
  }
  .global-nav-inner a {
    font-size: 0.95rem;  /* ★ 0.8rem → 0.95rem に拡大 */
    padding: 12px 14px;  /* ★ 8px 10px → 12px 14px に拡大（高さ約40px確保） */
    font-weight: 600;
  }
}
@media (max-width: 480px) {
  .global-nav-inner a {
    font-size: 0.88rem;  /* ★ 0.75rem → 0.88rem に拡大 */
    padding: 11px 12px;  /* ★ 7px 8px → 11px 12px に拡大 */
  }
}

/* ===================================
 * 16. XフォローCTA（旧: 読者登録CTA）
 * =================================== */
.subscribe-cta {
  background: linear-gradient(135deg, #15202b 0%, #1a1a2e 100%);
  border-radius: var(--radius-lg);
  color: #fff;
  margin: 40px auto 30px;
  max-width: var(--content-width-md);
  padding: 32px 28px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  contain: layout style paint;
  content-visibility: auto;
  contain-intrinsic-size: 0 180px;
}
.subscribe-cta-title { font-size: 1.25rem; font-weight: 700; margin-bottom: 8px; line-height: 1.4; }
.subscribe-cta-desc { font-size: 0.9rem; margin-bottom: 18px; opacity: 0.85; line-height: 1.6; }
.subscribe-cta-btn {
  background-color: #fff;
  border: none; border-radius: 30px;
  color: #0f1419; cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 1rem; font-weight: 700;
  padding: 12px 36px;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.2s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.subscribe-cta-btn:hover {
  background-color: #e7e9ea;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
  color: #0f1419;
}
.subscribe-cta-btn .x-icon { font-size: 1.2em; font-weight: 900; }
.subscribe-cta-note { font-size: 0.75rem; margin-top: 10px; opacity: 0.6; }
@media (max-width: 767px) {
  .subscribe-cta { margin: 30px 10px 20px; padding: 24px 20px; }
  .subscribe-cta-title { font-size: 1.1rem; }
  .subscribe-cta-btn { font-size: 0.95rem; padding: 10px 28px; }
}

/* ===================================
 * 17. ページャー改善
 * =================================== */
.pager-prev a, .pager-next a {
  white-space: normal !important;
  overflow: visible !important;
  text-overflow: clip !important;
  line-height: 1.5 !important;
  min-height: 56px !important;
  display: flex !important;
  align-items: center;
  border-left: 3px solid var(--primary-base);
}
.pager-next a { border-left: none; border-right: 3px solid var(--primary-base); }
.pager-prev a:hover, .pager-next a:hover { border-left-color: var(--accent-base); }
.pager-next a:hover { border-left-color: transparent; border-right-color: var(--accent-base); }

/* ===================================
 * 18. カードホバー演出の強化
 * =================================== */
.archive-entry:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 16px 40px rgba(0,0,0,0.15) !important;
}
.archive-entry:hover .entry-thumb { transform: scale(1.08) !important; }
.entry-thumb-link { position: relative; }
.archive-entry .entry-thumb-link::before {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(0,0,0,0.15), transparent);
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.archive-entry:hover .entry-thumb-link::before { opacity: 1; }
.archive-entry:hover .entry-title-link {
  color: var(--primary-base) !important;
  -webkit-text-fill-color: var(--primary-base) !important;
}

/* ===================================
 * 19. 記事本文の行間・余白改善（PC）
 * =================================== */
@media (min-width: 768px) {
  .entry-content { line-height: 2.0; letter-spacing: 0.02em; }
  .entry-content p { margin-bottom: 1.8em; line-height: 2.0; }
  .entry-content h2 { margin-top: 2.5em; margin-bottom: 1em; padding-bottom: 0.6em; }
  .entry-content h3 { margin-top: 2em; margin-bottom: 0.8em; }
  .entry-content h2 + p, .entry-content h3 + p { margin-top: 0.3em; }
}

/* ===================================
 * 20. フッター
 * =================================== */
.footer-copyright { text-align: center; padding: 20px 0; font-size: 13px; color: var(--text-light); }
.footer-links { text-align: center; padding: 15px 0; font-size: 14px; }
.footer-links a { color: var(--text-light); margin: 0 10px; text-decoration: none; transition: color 0.2s ease; }
.footer-links a:hover { color: var(--primary-base); }

/* ===================================
 * 20.5. LCPアイキャッチ保護
 * 広告自体は非表示にしない（AdSenseポリシー準拠）
 * アイキャッチの余白を詰めてLCP改善
 * =================================== */
.entry-content > figure:first-of-type {
  margin-top: 0 !important;
}

/* ===================================
 * 21. 読了時間バー（記事上HTMLから移動）
 * はてなブログの記事上HTMLでは<style>/<script>が使えないため
 * CSSはデザインCSS、JSはタイトル下HTMLに統合
 * =================================== */
.reading-time-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  margin: 0 0 24px;
  background: linear-gradient(135deg, #f0f4ff 0%, #f5f7fa 100%);
  border-radius: 10px;
  font-size: 0.88rem;
  color: #555;
  contain: layout style;
  border: 1px solid #e4e8f0;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.reading-time-bar .rt-icon { font-size: 1.15rem; }
.reading-time-bar .rt-divider {
  width: 1px;
  height: 16px;
  background-color: #d0d4dc;
  flex-shrink: 0;
}
.reading-time-bar .rt-chars { color: #777; font-size: 0.82rem; }

/* ===================================
 * 22. 記事下HTML: 回遊導線（心理的最適化）
 * シェア促進 → カテゴリ回遊ナビ
 * =================================== */
.article-bottom-cta {
  margin: 30px 0 20px;
  padding: 20px 24px;
  background: #f8f9fb;
  border-radius: 10px;
  text-align: center;
  contain: layout style;
  border: 1px solid #e8ecf0;
}
.article-bottom-cta .abtc-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.article-bottom-cta .abtc-desc {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 0;
}
.article-category-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin: 18px 0 10px;
}
.article-category-nav a {
  padding: 8px 18px;
  background: #1b2845;
  color: #fff;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.2s ease;
}
.article-category-nav a:hover {
  background: var(--accent-base);
  transform: translateY(-1px);
  color: #fff;
}

/* ===================================
 * 23. 要素配置の心理的最適化（CSS order）
 *
 * ■ 理論根拠:
 *   - Peak-End Rule: 読了直後がシェア意欲のピーク → シェアを最優先
 *   - Serial Position Effect: 最初と最後が記憶に残る → シェア(最初) + 検索(最後)
 *   - Progressive Disclosure: エンゲージメント段階を上から下へ
 *   - Social Proof: ランキングで「他の人も読んでいる」を訴求
 *
 * ■ 最適配置順序（記事本文直後から）:
 *   ① シェアボタン (order: -30) — 読了直後のピーク活用
 *   ② 記事下CTA + カテゴリナビ (order: -25) — シェア促進 + 回遊
 *   ③ コメントボックス (order: -20, JSで移動) — エンゲージメント
 *   ④ 読者CTA (order: -15, JSで配置) — 購読促進
 *   ⑤ 関連記事 (order: -5) — コンテクスト近接回遊
 *   ⑥ アクセスランキング (order: 0) — 社会的証明
 *   ⑦ 最新記事 (order: 5) — 鮮度訴求
 *   ⑧ 検索ボックス (order: 10) — 離脱防止の最後の砦
 *   ⑨ タグ・著者情報 (order: 15-20) — メタ情報
 * =================================== */

/* フッター全体をflex columnにして子要素のorderを有効化 */
footer.entry-footer {
  display: flex !important;
  flex-direction: column !important;
}

/* フッター直下の要素配置 */
footer.entry-footer > .social-buttons { order: -30 !important; }
footer.entry-footer > .customized-footer { order: -25 !important; }
footer.entry-footer > .comment-box { order: -20 !important; }
footer.entry-footer > .subscribe-cta { order: -22 !important; }
footer.entry-footer > .entry-footer-modules { order: -10 !important; }
footer.entry-footer > .entry-tags-wrapper { order: 15 !important; }
footer.entry-footer > .entry-footer-section { order: 20 !important; }

/* モジュール内の配置 */
.entry-footer-modules {
  display: flex !important;
  flex-direction: column !important;
}
.hatena-module-related-entries { order: -5; }
.hatena-module-entries-access-ranking { order: 0; }
.hatena-module-recent-entries { order: 5; }
.hatena-module-search-box { order: 10; }

/* 減速モーション: ナビのアニメーション停止 */
@media (prefers-reduced-motion: reduce) {
  .global-nav-inner a.nav-breaking::before { animation: none; }
}