@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@600;700;800;900&family=Noto+Sans+JP:wght@400;500;700;900&display=swap');

/* ==========================================================================
   🔞 オトナクラベ！ - ネオ・ダークラグジュアリー デザインシステム
   ========================================================================== */

:root {
  --bg-deep: #060911;
  --bg-surface: #0f172a;
  --bg-card: #131b2e;
  --bg-card-hover: #1e293b;
  
  --text-main: #f8fafc;
  --text-body: #cbd5e1;
  --text-muted: #94a3b8;
  
  --neon-pink: #f43f5e;
  --neon-rose: #fb7185;
  --neon-purple: #a855f7;
  --neon-gold: #fbbf24;
  --neon-cyan: #38bdf8;
  
  --border: #1e293b;
  --border-light: rgba(255, 255, 255, 0.1);
  --border-neon: rgba(244, 63, 94, 0.4);
  
  --grad-primary: linear-gradient(135deg, #ec4899, #f43f5e 50%, #fb923c);
  --grad-card: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
  
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 12px 28px rgba(0, 0, 0, 0.6);
  --shadow-neon: 0 0 20px rgba(244, 63, 94, 0.35);
}

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

html {
  font-size: 16px;
  background-color: var(--bg-deep);
}

body {
  background-color: var(--bg-deep);
  background-image: 
    radial-gradient(circle at 10% 10%, rgba(244, 63, 94, 0.12) 0%, transparent 40%),
    radial-gradient(circle at 90% 70%, rgba(168, 85, 247, 0.12) 0%, transparent 45%);
  background-attachment: fixed;
  color: var(--text-body);
  font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* 全画像はみ出し完全防止 */
img, svg {
  max-width: 100% !important;
  height: auto !important;
  display: block;
}

a {
  color: var(--neon-cyan);
  text-decoration: none;
  transition: all 0.2s ease;
}
a:hover {
  color: #7dd3fc;
  text-decoration: none;
}

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

/* ==========================================================================
   Header: 上品なダークグラスヘッダー
   ========================================================================== */
.vod-header {
  background: rgba(6, 9, 17, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-light);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 14px 0;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.vod-logo {
  font-size: 1.4rem;
  font-weight: 900;
  color: #ffffff !important;
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: -0.5px;
}
.vod-logo:hover {
  opacity: 0.9;
}

.vod-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.vod-nav a {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 700;
}
.vod-nav a:hover {
  color: var(--text-main);
}

.vod-nav a.parent-link {
  color: var(--neon-cyan);
  background: rgba(56, 189, 248, 0.1);
  padding: 5px 12px;
  border-radius: 20px;
  border: 1px solid rgba(56, 189, 248, 0.3);
  font-size: 0.82rem;
}
.vod-nav a.parent-link:hover {
  background: rgba(56, 189, 248, 0.2);
}

/* ==========================================================================
   ヒーローセクション
   ========================================================================== */
.hero-section {
  text-align: center;
  padding: 48px 0 36px;
}

.hero-badge {
  display: inline-block;
  background: rgba(244, 63, 94, 0.15);
  color: var(--neon-rose);
  border: 1px solid rgba(244, 63, 94, 0.35);
  font-size: 0.82rem;
  font-weight: 800;
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.hero-title {
  font-size: 2.3rem;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 12px;
  line-height: 1.3;
  letter-spacing: -0.5px;
}

.hero-title .grad-text {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 640px;
  margin: 0 auto;
}

/* ==========================================================================
   マガジンレイアウト（トップページ記事一覧）
   ========================================================================== */
.posts-section {
  padding: 16px 0 64px;
}

.section-title {
  font-size: 1.35rem;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-title::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 20px;
  background: var(--grad-primary);
  border-radius: 2px;
}

.magazine-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}

/* 記事カード */
.mag-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.mag-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-neon);
  box-shadow: var(--shadow-md), var(--shadow-neon);
}

.mag-card-link {
  color: inherit !important;
  text-decoration: none !important;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.mag-card-thumb {
  width: 100%;
  aspect-ratio: 1200 / 630;
  background: #090d16;
  overflow: hidden;
  position: relative;
}

.mag-card-thumb img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  transition: transform 0.3s ease;
}

.mag-card:hover .mag-card-thumb img {
  transform: scale(1.04);
}

.mag-card-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.mag-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.mag-category {
  background: rgba(244, 63, 94, 0.15);
  color: var(--neon-rose);
  padding: 2px 10px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.75rem;
}

.mag-card-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.5;
  margin-bottom: 10px;
  transition: color 0.2s ease;
}

.mag-card:hover .mag-card-title {
  color: var(--neon-rose);
}

.mag-card-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.mag-card-footer {
  margin-top: auto;
  color: var(--neon-cyan);
  font-weight: 800;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ==========================================================================
   記事詳細ページ（Single Page）
   ========================================================================== */
.article-container {
  max-width: 840px;
  margin: 36px auto 72px;
  padding: 0 16px;
}

.article-header {
  margin-bottom: 28px;
}

.article-meta-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.article-date {
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 600;
}

.article-title {
  font-size: 2rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.4;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

.article-eyecatch {
  width: 100%;
  aspect-ratio: 1200 / 630;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: 36px;
  border: 1px solid var(--border-light);
  background: #090d16;
}

.article-eyecatch img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

/* 記事本文スタイリング */
.article-body {
  font-size: 1.05rem;
  line-height: 1.95;
  color: #e2e8f0;
}

.article-body h2 {
  font-size: 1.55rem;
  font-weight: 900;
  color: #ffffff;
  margin: 48px 0 20px;
  padding: 12px 18px;
  background: linear-gradient(90deg, rgba(244, 63, 94, 0.15), rgba(168, 85, 247, 0.05) 80%, transparent);
  border-left: 5px solid var(--neon-pink);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.article-body h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--neon-gold);
  margin: 32px 0 16px;
}

.article-body p {
  margin-bottom: 22px;
}

.article-body strong {
  color: #ffffff;
  background: linear-gradient(transparent 65%, rgba(244, 63, 94, 0.35) 65%);
}

.article-body ul, .article-body ol {
  margin: 18px 0 24px 20px;
}

.article-body li {
  margin-bottom: 8px;
}

/* 比較テーブル */
.article-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 28px 0;
  background: rgba(19, 27, 46, 0.7);
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border-light);
}

.article-body th {
  background: rgba(244, 63, 94, 0.25);
  color: #ffffff;
  padding: 12px 16px;
  font-weight: 800;
  text-align: left;
  border-bottom: 1px solid var(--border-neon);
}

.article-body td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border-light);
  color: #cbd5e1;
}

.article-body tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.02);
}

.article-body tr:hover {
  background: rgba(244, 63, 94, 0.08);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.vod-footer {
  background: #04060b;
  border-top: 1px solid var(--border-light);
  padding: 40px 0 28px;
  margin-top: 64px;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.footer-logo {
  font-size: 1.3rem;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 12px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 18px;
}

.footer-links a {
  color: var(--text-muted);
  font-weight: 600;
}
.footer-links a:hover {
  color: #ffffff;
}

.footer-disclaimer {
  max-width: 600px;
  margin: 0 auto 16px;
  font-size: 0.78rem;
  line-height: 1.6;
  color: #64748b;
}

@media (max-width: 768px) {
  .hero-title { font-size: 1.8rem; }
  .article-title { font-size: 1.5rem; }
  .magazine-grid { grid-template-columns: 1fr; }
}
