@charset "UTF-8";
/* ============================================
   ベトナムの遊び方 カスタムCSS（2026-08-21）
   P1: キービジュアル / P3: ヘッダー / P4: 再生ボタン / ランキング整形
   ============================================ */

/* --- P3: ヘッダーを白地＋濃色テキストに --- */
.l-top_header {
  background: #FFFFFF;
}
.l-top_header a,
.l-top_header .global_navi__item a,
.l-top_header .global_navi__list a {
  color: #1C3D46 !important;
}
.l-top_header .btn,
.l-top_header button {
  color: #1C3D46 !important;
  border-color: #1C3D46 !important;
}

/* --- 記事一覧カードの著者行(admin)を非表示に --- */
.archive__item .avatar_box {
  display: none;
}

/* --- P4: 記事カードのサムネイルに再生ボタンを重ねる --- */
.eyecatch__link {
  position: relative;
  display: block;
}
.eyecatch__link::after {
  content: "▶";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 44px;
  height: 44px;
  padding-left: 3px;
  background: rgba(16, 32, 38, .62);
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 14px;
  transition: transform .2s ease;
  pointer-events: none;
}
.eyecatch__link:hover::after {
  transform: scale(1.12);
}

/* --- P1: キービジュアルの高さ上限（カスタマイザー設定の保険） --- */
.l-keyvisual_top .keyvisual {
  max-height: 46vh;
  min-height: 260px;
}

/* --- サイドバーの人気記事(WordPress Popular Posts)を順位付きリストに --- */
.popular-posts .wpp-list {
  counter-reset: wpp;
  list-style: none;
  margin: 0;
  padding: 0;
}
.popular-posts .wpp-list li {
  counter-increment: wpp;
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  margin: 0 0 14px;
  padding-left: 26px;
}
.popular-posts .wpp-list li::before {
  content: counter(wpp);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border-radius: 5px;
  background: #0E7C86;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  display: grid;
  place-items: center;
}
.popular-posts .wpp-list li:first-child::before {
  background: #D97843;
}
.popular-posts .wpp-list img.wpp-thumbnail {
  width: 92px;
  height: auto;
  border-radius: 6px;
  flex-shrink: 0;
}
.popular-posts .wpp-list .wpp-post-title {
  font-size: .8rem;
  font-weight: 700;
  line-height: 1.45;
  display: block;
}
.popular-posts .wpp-list .wpp-views,
.popular-posts .wpp-list .post-stats {
  font-size: .68rem;
  color: #7c8a93;
}
