/* missavvr 基本スタイル（missav-la のダークテーマを静的サイト用に移植）
   配色: ダーク背景 #0e0e13・白文字 / カード面 #1b1b22 / アクセント ピンク #e889a8 */
* { box-sizing: border-box; }
body { margin: 0; font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  background: #0e0e13; color: #eaeaea; }
a { color: inherit; text-decoration: none; }

/* ヘッダーバー（ダーク・左ロゴ＝missav-la 同構成） */
.fanza-headerbar { position: sticky; top: 0; z-index: 100; height: 50px;
  background: #0e0e13; border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  display: flex; align-items: center; }
.fanza-logo { margin-left: 20px; color: #fff; font-family: Roboto, sans-serif;
  font-size: 20px; font-weight: 700; letter-spacing: 2px; }
.fanza-logo-accent { color: #e889a8; }

.fanza-nav { margin-left: auto; margin-right: 12px; display: flex; gap: 12px; }
.fanza-nav a { color: #cfcfcf; font-size: .88rem; }
.fanza-nav a:hover { color: #e889a8; }

.fanza-container { max-width: 1080px; margin: 0 auto; padding: 12px; }
.fanza-top-title { font-size: 1.1rem; color: #cfcfcf; font-weight: 600; margin: 8px 0 4px; }
.fanza-archive-title { font-size: 1.3rem; font-weight: 700; margin: 10px 0 1em;
  padding-bottom: .4em; border-bottom: 2px solid #e889a8; }
.fanza-archive-intro { font-size: .9rem; line-height: 1.7; color: rgba(255,255,255,.55);
  margin: 0 0 12px; }
.fanza-info a, .fanza-caption { color: inherit; }

/* セクション見出し（白太字＋「▶もっと見る」のみピンク） */
.fanza-section { margin: 22px 0; }
.fanza-heading-row { position: relative; margin-bottom: 14px; }
.fanza-heading { margin: 0; font-size: 1.25rem; font-weight: 700; color: #fff; }
.fanza-more { position: absolute; right: 0; bottom: 2px; font-size: 90%; color: #cfcfcf; }
.fanza-more::before { content: "▶"; margin-right: 4px; font-size: 80%; color: #e889a8; }
.fanza-more:hover { color: #e889a8; }

/* 作品グリッド（PC4列 / モバイル2列・横長サムネ 68%＝videoa pl 見開き） */
.fanza-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px 3%; }
@media (min-width: 768px) {
  .fanza-grid { grid-template-columns: repeat(4, 1fr); gap: 36px 2%; }
}
.fanza-card { position: relative; display: block; color: #cfcfcf; }
.fanza-thumb { position: relative; display: block; width: 100%; padding-bottom: 68%;
  background-color: rgba(255, 255, 255, 0.06); background-image: var(--thumb-bg);
  background-size: cover; background-position: center; border-radius: 10px; overflow: hidden; }
.fanza-thumb img { position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: contain; backdrop-filter: blur(14px); }
@media (min-width: 768px) {
  .fanza-thumb { background-image: var(--thumb-bg-lg, var(--thumb-bg)); }
}
.fanza-rank { position: absolute; top: 6px; left: 6px; z-index: 2; min-width: 24px;
  height: 20px; line-height: 20px; font-size: 11px; font-weight: 700; color: #e889a8;
  text-align: center; background: rgba(0, 0, 0, 0.8); border-radius: 10px; }
.fanza-duration { position: absolute; right: 6px; bottom: 6px; z-index: 2; min-width: 48px;
  height: 20px; line-height: 20px; padding: 0 6px; font-size: 10px; color: #fff;
  text-align: center; background: rgba(0, 0, 0, 0.7); border-radius: 10px; }
.fanza-caption { font-size: 13px; line-height: 18px; padding: 6px 2px 0;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
  min-height: 36px; }
.fanza-date { font-size: 10px; color: rgba(255, 255, 255, 0.4); padding: 2px 2px 0; }

/* 個別ページ */
.fanza-work-title { font-size: 1.15rem; line-height: 1.5; margin: 10px 0; color: #fff; }
.fanza-detail { background: #16161c; border-radius: 10px; padding: 14px; }
.fanza-pr { display: inline-block; padding: 1px 8px; margin-bottom: 8px; font-size: 11px;
  line-height: 1.6; color: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.25); border-radius: 4px; }
.fanza-intro { margin: 0 0 12px; font-size: 13px; line-height: 1.7; color: #c5c5cc; }

/* ヒーロー枠: 固定比68%で読込前に高さを予約（CLS対策）＋同画像のぼかし背景フィル */
.fanza-main-image { position: relative; width: 100%; padding-bottom: 68%;
  background-color: rgba(255, 255, 255, 0.06); border-radius: 10px; overflow: hidden; }
.fanza-main-image::before { content: ""; position: absolute; inset: 0;
  background-image: var(--hero-bg); background-size: cover; background-position: center;
  filter: blur(16px) brightness(0.92) saturate(1.1); transform: scale(1.15); z-index: 0; }
.fanza-main-image img, .fanza-main-image a { position: absolute; inset: 0;
  width: 100%; height: 100%; }
.fanza-main-image img { object-fit: contain; z-index: 1; }

.fanza-info { display: grid; grid-template-columns: 7em 1fr; gap: 4px 10px;
  font-size: .9rem; margin: 1em 0; }
.fanza-info dt { color: rgba(255, 255, 255, 0.45); }
.fanza-info dd { margin: 0; }
.fanza-info dd a { color: #e889a8; font-weight: 700; }
.fanza-sample-images { display: grid; grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 8px; margin: 1.2em 0; }
.fanza-sample-images img { width: 100%; height: auto; display: block; border-radius: 6px; }

/* CTA（ピンクボタン＝missav-la 同スタイル） */
.fanza-cta, .fanza-sample-cta { text-align: center; margin: 1.5em 0; }
.fanza-cta a, .fanza-sample-cta a { display: inline-block; padding: 0.9em 2.2em;
  background: #e889a8; color: #fff; font-weight: 700; border-radius: 10px;
  transition: filter 0.2s ease; }
.fanza-cta a:hover, .fanza-sample-cta a:hover { filter: brightness(1.08); color: #fff; }

/* フッター */
.fanza-footer { max-width: 1080px; margin: 24px auto; padding: 12px;
  color: rgba(255, 255, 255, 0.45); font-size: .78rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08); }
.fanza-footer a { color: rgba(255, 255, 255, 0.6); }
