/* ========================================
   Giverlink Media - メインスタイル v2.0
   色を変えたい場合は :root {} を編集
======================================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* ▼ メインカラー */
  --navy:         #0a1628;
  --blue:         #1a3a6b;
  --blue-mid:     #1e50a2;
  --blue-bright:  #2563eb;
  --blue-light:   #dbeafe;

  /* ▼ ベースカラー */
  --white:        #ffffff;
  --cream:        #faf8f4;
  --gray-100:     #f0eee9;
  --gray-200:     #dddad3;
  --gray-400:     #9d9a93;
  --gray-600:     #5c5a55;
  --gray-800:     #2a2825;

  /* ▼ アクセントカラー */
  --red:          #c0392b;
  --gold:         #c9a84c;

  /* ▼ フォント */
  --font-display:   'Playfair Display', serif;
  --font-condensed: 'Barlow Condensed', sans-serif;
  --font-body:      'Noto Sans JP', sans-serif;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--gray-800);
  font-size: 15px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }

/* ─── TICKER ─── */
.ticker {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  font-size: 11px;
  font-family: var(--font-condensed);
  letter-spacing: 0.1em;
  padding: 7px 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.ticker-label {
  background: var(--blue-bright);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  letter-spacing: 0.12em;
  white-space: nowrap;
}

/* ─── HEADER ─── */
.site-header {
  background: var(--white);
  border-bottom: 3px solid var(--navy);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  height: 64px;
  gap: 2rem;
}
.site-logo { display: flex; flex-direction: column; }
.logo-main {
  font-family: var(--font-condensed);
  font-weight: 900;
  font-size: 26px;
  color: var(--navy);
  letter-spacing: 0.05em;
  line-height: 1;
}
.logo-main span { color: var(--blue-bright); }
.logo-sub {
  font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--gray-400);
  text-transform: uppercase;
}
.header-nav { display: flex; list-style: none; height: 64px; }
.header-nav a {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-600);
  padding: 0 16px;
  height: 100%;
  display: flex;
  align-items: center;
  border-bottom: 3px solid transparent;
  margin-bottom: -3px;
  transition: all 0.15s;
}
.header-nav a:hover { color: var(--navy); border-bottom-color: var(--blue-bright); }
.header-nav .current-menu-item > a,
.header-nav a.active { color: var(--navy); border-bottom-color: var(--navy); }
.header-actions { display: flex; align-items: center; gap: 12px; }
.header-search {
  position: relative;
  display: flex;
  align-items: center;
}
.header-search input {
  background: var(--gray-100);
  border: 1.5px solid var(--gray-200);
  border-radius: 4px;
  padding: 7px 14px 7px 36px;
  font-size: 12px;
  font-family: var(--font-body);
  width: 200px;
  outline: none;
  transition: border-color 0.15s;
}
.header-search input:focus { border-color: var(--blue-bright); }
.header-search svg {
  position: absolute;
  left: 10px;
  color: var(--gray-400);
}
.btn-cta {
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-condensed);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 9px 20px;
  transition: background 0.15s;
  white-space: nowrap;
}
.btn-cta:hover { background: var(--blue-mid); }

/* ─── CATEGORY NAV ─── */
.cat-nav {
  background: var(--navy);
  padding: 0 2rem;
  display: flex;
  overflow-x: auto;
}
.cat-nav a {
  font-family: var(--font-condensed);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  padding: 10px 16px;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: all 0.15s;
}
.cat-nav a:hover { color: var(--white); }
.cat-nav a.active,
.cat-nav .current-menu-item > a { color: var(--white); border-bottom-color: var(--blue-bright); }

/* ─── HERO ─── */
.site-hero {
  background: var(--white);
  position: relative;
  overflow: hidden;
  padding: 0;
}
.site-hero::before { display: none; }
.site-hero .hero-image {
  width: 100%;
  height: auto;
  display: block;
  max-height: 620px;
  object-fit: cover;
  object-position: top center;
}
.hero-inner { display: none; }
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 1.25rem;
}
.hero-tag-line { width: 32px; height: 2px; background: var(--blue-bright); }
.hero-tag-text {
  font-family: var(--font-condensed);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue-bright);
}
.hero-inner h1 {
  font-family: var(--font-display);
  font-size: 48px;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 1.25rem;
  max-width: 640px;
}
.hero-inner h1 em { font-style: italic; color: var(--gold); }
.hero-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  max-width: 520px;
  line-height: 1.8;
  margin-bottom: 2rem;
}
.hero-stats {
  display: flex;
  gap: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.stat-num {
  font-family: var(--font-condensed);
  font-size: 32px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.stat-num span { color: var(--blue-bright); font-size: 18px; }
.stat-label { font-size: 11px; color: rgba(255,255,255,0.45); letter-spacing: 0.1em; margin-top: 4px; }

/* ─── MAIN LAYOUT ─── */
.main-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2.5rem 2rem;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 2.5rem;
  align-items: start;
}

/* ─── SECTION HEADER ─── */
.sec-hd {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.5rem;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--navy);
}
.sec-hd-num { font-family: var(--font-condensed); font-size: 11px; font-weight: 700; color: var(--blue-bright); letter-spacing: 0.1em; }
.sec-hd-title { font-family: var(--font-condensed); font-size: 18px; font-weight: 900; color: var(--navy); letter-spacing: 0.06em; text-transform: uppercase; }
.sec-hd-line { flex: 1; height: 1px; background: var(--gray-200); }

/* ─── TABS ─── */
.tabs { display: flex; margin-bottom: 1.5rem; border-bottom: 1.5px solid var(--gray-200); }
.tab-btn {
  font-family: var(--font-condensed);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 16px;
  color: var(--gray-400);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1.5px;
  cursor: pointer;
  transition: all 0.15s;
}
.tab-btn:hover { color: var(--navy); }
.tab-btn.active { color: var(--blue-bright); border-bottom-color: var(--blue-bright); }

/* ─── FEATURED CARD ─── */
.featured-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 1.5rem;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  color: inherit;
}
.featured-card:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(10,22,40,0.12); }
.featured-thumb {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue-mid) 100%);
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.featured-thumb img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.featured-thumb-label {
  font-family: var(--font-condensed);
  font-size: 72px;
  font-weight: 900;
  color: rgba(255,255,255,0.15);
  position: relative;
  z-index: 1;
}
.featured-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.featured-tags { display: flex; gap: 6px; margin-bottom: 12px; flex-wrap: wrap; align-items: center; }
.badge-new {
  font-family: var(--font-condensed);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  background: var(--red);
  color: var(--white);
  padding: 2px 8px;
}
.badge-pickup {
  font-family: var(--font-condensed);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  background: var(--gold);
  color: var(--white);
  padding: 2px 8px;
}
.tag {
  font-family: var(--font-condensed);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 2px 10px;
  text-transform: uppercase;
}
.tag-seo     { background: var(--blue-light); color: var(--blue-mid); }
.tag-ai      { background: #ede9fe; color: #5b21b6; }
.tag-sns     { background: #fce7f3; color: #9d174d; }
.tag-meo     { background: #dcfce7; color: #166534; }
.tag-biz     { background: #fef3c7; color: #92400e; }
.tag-unso    { background: #e0f2fe; color: #0369a1; }
.tag-kenchiku { background: #f0fdf4; color: #15803d; }
.tag-default { background: var(--gray-100); color: var(--gray-600); }

.featured-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.45;
  color: var(--navy);
  margin-bottom: 10px;
}
.featured-excerpt { font-size: 13px; color: var(--gray-600); line-height: 1.7; margin-bottom: 16px; }
.featured-meta { font-family: var(--font-condensed); font-size: 11px; letter-spacing: 0.08em; color: var(--gray-400); text-transform: uppercase; }

/* ─── CARD GRID ─── */
.card-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-bottom: 2rem; }
.article-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  display: block;
  color: inherit;
}
.article-card:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(10,22,40,0.1); }
.card-thumb {
  width: 100%; height: 90px;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.card-thumb img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.card-thumb-label { font-family: var(--font-condensed); font-size: 36px; font-weight: 900; color: rgba(255,255,255,0.2); position: relative; z-index: 1; }
.card-body { padding: 14px; }
.card-tags { display: flex; gap: 5px; flex-wrap: wrap; margin-bottom: 8px; align-items: center; }
.card-title { font-size: 13px; font-weight: 700; line-height: 1.5; color: var(--navy); margin-bottom: 8px; }
.card-meta { font-family: var(--font-condensed); font-size: 11px; letter-spacing: 0.06em; color: var(--gray-400); text-transform: uppercase; }

/* ─── CONTENT TYPES ─── */
.content-types { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-bottom: 2.5rem; }
.type-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  padding: 1.25rem;
  display: block;
  color: inherit;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}
.type-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: var(--blue-bright);
  transform: scaleY(0);
  transition: transform 0.2s;
  transform-origin: bottom;
}
.type-card:hover::before { transform: scaleY(1); }
.type-card:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(10,22,40,0.1); }
.type-icon { width: 36px; height: 36px; background: var(--navy); display: flex; align-items: center; justify-content: center; margin-bottom: 12px; }
.type-name { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.type-desc { font-size: 12px; color: var(--gray-600); line-height: 1.5; }

/* ─── FEATURE GRID ─── */
.feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-bottom: 2rem; }
.feature-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  padding: 1.25rem;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition: transform 0.2s, box-shadow 0.2s;
  color: inherit;
}
.feature-card:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(10,22,40,0.1); }
.feature-icon { width: 40px; height: 40px; background: var(--navy); flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.feature-name { font-size: 13px; font-weight: 700; color: var(--navy); margin-bottom: 3px; }
.feature-desc { font-size: 12px; color: var(--gray-600); line-height: 1.5; }

/* ─── 記事詳細 ─── */
.post-wrap { max-width: 1100px; margin: 0 auto; padding: 2.5rem 2rem; display: grid; grid-template-columns: 1fr 300px; gap: 2.5rem; }
.post-header { margin-bottom: 2rem; }
.post-header h1 { font-family: var(--font-display); font-size: 32px; font-weight: 700; line-height: 1.4; color: var(--navy); margin: 1rem 0; }
.post-meta { font-family: var(--font-condensed); font-size: 12px; letter-spacing: 0.08em; color: var(--gray-400); text-transform: uppercase; }
.post-thumbnail { width: 100%; border-radius: 0; margin-bottom: 2rem; overflow: hidden; }
.post-thumbnail img { width: 100%; }
.post-content { line-height: 1.9; }
.post-content h2 { font-family: var(--font-display); font-size: 22px; font-weight: 700; margin: 2rem 0 1rem; padding-left: 1rem; border-left: 3px solid var(--blue-bright); color: var(--navy); }
.post-content h3 { font-size: 17px; font-weight: 700; margin: 1.5rem 0 0.75rem; color: var(--navy); }
.post-content p { margin-bottom: 1.25rem; }
.post-content ul, .post-content ol { padding-left: 1.5rem; margin-bottom: 1.25rem; }
.post-content a { color: var(--blue-bright); text-decoration: underline; }
.post-content blockquote { border-left: 3px solid var(--gray-200); padding: 0.75rem 1.25rem; color: var(--gray-600); margin: 1.5rem 0; background: var(--gray-100); }

/* ─── SIDEBAR ─── */
.sidebar { display: flex; flex-direction: column; gap: 1.5rem; }
.side-card { background: var(--white); border: 1.5px solid var(--gray-200); padding: 1.25rem; }
.side-card-hd { display: flex; align-items: center; gap: 8px; margin-bottom: 1rem; padding-bottom: 10px; border-bottom: 2px solid var(--navy); }
.side-card-hd-bar { width: 3px; height: 14px; background: var(--blue-bright); }
.side-card-title { font-family: var(--font-condensed); font-size: 13px; font-weight: 900; letter-spacing: 0.12em; text-transform: uppercase; color: var(--navy); }
.rank-item { display: flex; gap: 10px; padding: 10px 0; border-bottom: 1px solid var(--gray-100); align-items: flex-start; }
.rank-item:last-child { border-bottom: none; }
.rank-num { font-family: var(--font-condensed); font-size: 22px; font-weight: 900; color: var(--gray-200); min-width: 24px; line-height: 1.1; }
.rank-num.top { color: var(--blue-bright); }
.rank-text { font-size: 12px; color: var(--gray-800); line-height: 1.5; font-weight: 500; }
.rank-text a { color: inherit; }
.rank-text a:hover { color: var(--blue-bright); }
.tag-cloud { display: flex; flex-wrap: wrap; gap: 6px; }
.tag-pill { font-family: var(--font-condensed); font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; padding: 4px 12px; border: 1.5px solid var(--gray-200); color: var(--gray-600); cursor: pointer; transition: all 0.15s; }
.tag-pill:hover { border-color: var(--navy); color: var(--navy); background: var(--blue-light); }

.profile-card { background: var(--navy); border: none; padding: 1.5rem; }
.profile-card .side-card-hd { border-bottom-color: var(--gold); }
.profile-card .side-card-hd-bar { background: var(--gold); }
.profile-card .side-card-title { color: var(--white); }
.profile-avatar { width: 64px; height: 64px; background: var(--blue-mid); border: 2px solid var(--blue-bright); display: flex; align-items: center; justify-content: center; margin-bottom: 12px; overflow: hidden; }
.profile-avatar img { width: 100%; height: 100%; object-fit: cover; }
.profile-name { font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 2px; }
.profile-role { font-family: var(--font-condensed); font-size: 11px; letter-spacing: 0.1em; color: var(--blue-bright); text-transform: uppercase; margin-bottom: 10px; }
.profile-bio { font-size: 12px; color: rgba(255,255,255,0.65); line-height: 1.6; }

.cta-card { background: var(--navy); border: none; padding: 1.5rem; position: relative; overflow: hidden; }
.cta-card::before { content: 'GET'; position: absolute; right: -10px; bottom: -20px; font-family: var(--font-condensed); font-size: 80px; font-weight: 900; color: rgba(255,255,255,0.05); line-height: 1; }
.cta-card .side-card-hd { border-bottom-color: var(--blue-bright); }
.cta-card .side-card-hd-bar { background: var(--gold); }
.cta-card .side-card-title { color: var(--white); }
.cta-card p { font-size: 13px; color: rgba(255,255,255,0.75); margin-bottom: 14px; line-height: 1.6; }
.btn-dl { display: block; background: var(--blue-bright); color: var(--white); font-family: var(--font-condensed); font-size: 13px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; text-align: center; padding: 11px; transition: background 0.15s; }
.btn-dl:hover { background: var(--blue-mid); }

.contact-card p { font-size: 12px; color: var(--gray-600); margin-bottom: 12px; line-height: 1.5; }
.btn-outline { display: block; border: 2px solid var(--navy); color: var(--navy); font-family: var(--font-condensed); font-size: 13px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; text-align: center; padding: 10px; transition: all 0.15s; }
.btn-outline:hover { background: var(--navy); color: var(--white); }

/* ─── FOOTER ─── */
.site-footer { background: var(--navy); margin-top: 3rem; padding: 3rem 2rem 2rem; }
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 2rem; padding-bottom: 2rem; border-bottom: 1px solid rgba(255,255,255,0.1); margin-bottom: 2rem; }
.footer-logo { font-family: var(--font-condensed); font-size: 24px; font-weight: 900; color: var(--white); letter-spacing: 0.05em; margin-bottom: 8px; }
.footer-logo span { color: var(--blue-bright); }
.footer-tagline { font-size: 12px; color: rgba(255,255,255,0.45); line-height: 1.6; }
.footer-col-title { font-family: var(--font-condensed); font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 12px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.65); transition: color 0.15s; }
.footer-links a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; }
.footer-copy { font-family: var(--font-condensed); font-size: 11px; letter-spacing: 0.08em; color: rgba(255,255,255,0.35); }

/* ─── ANIMATIONS ─── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
.hero-inner { animation: fadeUp 0.5s ease both; }
.article-card:nth-child(1) { animation: fadeUp 0.4s 0.1s ease both; }
.article-card:nth-child(2) { animation: fadeUp 0.4s 0.18s ease both; }
.article-card:nth-child(3) { animation: fadeUp 0.4s 0.26s ease both; }
.article-card:nth-child(4) { animation: fadeUp 0.4s 0.34s ease both; }

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  .main-wrap, .post-wrap { grid-template-columns: 1fr; padding: 0 1rem; }
  .card-grid { grid-template-columns: 1fr; }
  .content-types { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .featured-card { grid-template-columns: 1fr; }
  .header-nav { display: none; }
  .hero-inner h1 { font-size: 28px; }
  .footer-top { grid-template-columns: 1fr; }
}

/* ─── MANGA SECTIONS ─── */
.manga-section {
  background: #f0f6ff;
  padding: 3rem 1.5rem;
  border-bottom: 2px solid #dbeafe;
}
.manga-section-blue {
  background: #ffffff;
}
.manga-section-blue .manga-title,
.manga-section-blue .manga-header-white .manga-title { color: #0a1628 !important; }
.manga-section-blue .manga-num { color: #d97706; }
.manga-section-blue .manga-header { border-bottom-color: #e5e7eb; }
.articles-section {
  background: #ffffff;
  padding: 3rem 1.5rem;
}
.manga-cta-section {
  background: #f0f6ff;
  padding: 3rem 1.5rem 4rem;
}
.manga-inner {
  max-width: 860px;
  margin: 0 auto;
}
.manga-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 2rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #2563eb;
}
.manga-header-white {
  border-bottom-color: rgba(255,255,255,0.3);
}
.manga-num {
  font-family: var(--font-condensed);
  font-size: 13px;
  font-weight: 700;
  color: #2563eb;
  letter-spacing: 0.1em;
}
.manga-header-white .manga-num { color: #c9a84c; }
.manga-title {
  font-size: 18px;
  font-weight: 700;
  color: #0a1628;
}
.manga-header-white .manga-title { color: #ffffff; }

/* ─── CHAT BUBBLES ─── */
.manga-chat {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}
.chat-row {
  display: flex;
  align-items: flex-end;
  gap: 12px;
}
.row-right {
  flex-direction: row-reverse;
}
.chat-avatar {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  text-align: center;
  line-height: 1.3;
}
.avatar-takeshi {
  background: #e8f0fe;
  color: #1e50a2;
  border: 2px solid #2563eb;
}
.avatar-giba {
  background: #0a1628;
  color: #c9a84c;
  border: 2px solid #c9a84c;
}
.chat-bubble {
  max-width: 75%;
  padding: 12px 16px;
  border-radius: 16px;
  font-size: 14px;
  line-height: 1.6;
  position: relative;
}
.bubble-takeshi {
  background: #ffffff;
  color: #2a2825;
  border: 1.5px solid #dbeafe;
  border-radius: 16px 16px 16px 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.bubble-giba {
  background: #0a1628;
  color: #ffffff;
  border-radius: 16px 16px 4px 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.bubble-giba strong { color: #c9a84c; }
.bubble-giba-white {
  background: #1e50a2;
}
.bubble-takeshi strong { color: #2563eb; }

/* ─── MANGA POINT ─── */
.manga-point {
  background: #ffffff;
  border-left: 4px solid #2563eb;
  border-radius: 0 12px 12px 0;
  padding: 16px 20px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  box-shadow: 0 2px 12px rgba(37,99,235,0.08);
}
.point-badge {
  background: #2563eb;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  font-family: var(--font-condensed);
  letter-spacing: 0.1em;
  padding: 3px 8px;
  white-space: nowrap;
  flex-shrink: 0;
}
.manga-point p { font-size: 14px; color: #2a2825; line-height: 1.7; }
.manga-point strong { color: #2563eb; }

/* ─── THEME CARDS ─── */
.theme-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 1rem;
}
.theme-card {
  background: transparent;
  border: 0;
  border-radius: 12px;
  padding: 0;
  overflow: hidden;
  line-height: 0;
}
.theme-card img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
}

/* ─── CTA BUTTONS ─── */
.cta-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.cta-btn-main {
  background: #2563eb;
  color: #ffffff;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 32px;
  border-radius: 8px;
  transition: background 0.15s;
  display: inline-block;
}
.cta-btn-main:hover { background: #1e50a2; }
.cta-btn-sub {
  background: transparent;
  color: #2563eb;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 32px;
  border-radius: 8px;
  border: 2px solid #2563eb;
  transition: all 0.15s;
  display: inline-block;
}
.cta-btn-sub:hover { background: #2563eb; color: #ffffff; }

/* ─── RESPONSIVE ─── */
@media (max-width: 640px) {
  .theme-cards { grid-template-columns: repeat(2, 1fr); }
  .chat-bubble { max-width: 85%; font-size: 13px; }
  .cta-buttons { flex-direction: column; align-items: center; }
}
