/* ===========================================
   Offshore-Bridge 記事レイアウト最終版
   PC: 2カラム / スマホ: 1カラム
=========================================== */

/* ====== Base ====== */
body {
  margin: 0;
  background: #f6f8fb;
  font-family: "Noto Sans JP", sans-serif;
  color: #1e293b;
  line-height: 1.85;
}

/* ====== Global Center Wrapper ====== */
.page-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
}

/* 中央固定(左右余白統一) */
.container {
  width: 100%;
  max-width: 1100px;
  padding: 0 20px;
  box-sizing: border-box;
}

/* ====== Article Header ====== */

.hero-article {
  margin-top: 40px;
}

.hero-article h1 {
  font-size: 2.3rem;
  font-weight: 700;
  margin-bottom: 18px;
}

/* ====== Layout: Sidebar + Content ====== */

.article-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
  margin-top: 50px;
}

/* ====== TOC (左固定) ====== */

.article-toc {
  position: sticky;
  top: 60px;
  align-self: start;
}

.toc-card {
  background: white;
  padding: 8px;
  border-radius: 6px;
  border-left: 2px solid #0ea5e9;
}

/* リンク */
.toc-card a {
  color: #0ea5e9;
  text-decoration: none;
}
.toc-card a:hover {
  text-decoration: underline;
}

/* ====== Article Content ====== */

.article-content {
  max-width: 760px; /* 読みやすい横幅に固定 */
}

.article-content h2 {
  font-size: 1.8rem;
  font-weight: 700;
  border-left: 4px solid #0ea5e9;
  padding-left: 12px;
  margin-top: 50px;
}

/* ====== Responsive ====== */

@media (max-width: 960px) {

  .article-layout {
    grid-template-columns: 1fr;
  }

  .article-toc {
    position: static;
  }

  .article-content {
    max-width: 100%;
  }
}

/* =======================================================
   最終余白調整 — 左寄り強化
======================================================= */

/* ---- PC・横幅大きい画面の場合は余白を縮める ---- */

@media (min-width: 1280px) {

  .container {
    max-width: 1000px;    /* ← 1100px → 1000pxにして中央圧縮 */
    padding-left: 10px;   /* ← 左右余白をさらに詰める */
    padding-right: 10px;
  }

  .article-layout {
    grid-template-columns: 240px 1fr; /* ← 左幅少し縮める */
    gap: 28px;
  }

  .article-content {
    max-width: 720px;  /* 本文幅調整で全体レイアウトが詰まる */
  }
}

/* ---- 超ワイド画面（フルHD以上）向け補正 ---- */

@media (min-width: 1600px) {

  .container {
    max-width: 900px;   /* さらに詰めて画面中心に寄せる */
  }

  .article-layout {
    grid-template-columns: 220px 1fr;
    gap: 24px;
  }
}

/* =======================================================
   比較表デザイン改善
======================================================= */

.article-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 1.06rem;
  line-height: 1.6;
}

.article-content table th,
.article-content table td {
  border: 1px solid #d9e2ec;
  padding: 14px 12px;
  vertical-align: top;
}

.article-content table th {
  background: #f0f6fc;
  font-weight: 600;
  text-align: left;
}

/* 行の背景色交互（偶数行） */
.article-content table tr:nth-child(even) td {
  background: #fafcfe;
}

/* 目次ブロックの余白調整 */
.article-toc,
.toc-container {
    margin-top: 12px !important; /* 上の余白を強制的に小さく */
    margin-bottom: 24px;
}

/* 目次内のヘッダー（"この記事の内容"）調整 */
.toc-container h2,
.article-toc h2 {
    margin-top: 0 !important;
    padding-top: 6px;
}

/* 目次全体のデザイン維持しつつ圧縮 */
.toc-container {
    padding: 18px 20px !important;
    max-width: 480px;
}

/* スマホ版調整 */
@media (max-width: 768px) {
    .toc-container {
        margin-top: 8px !important;
        padding: 14px 16px !important;
    }
    .toc-container h2 {
        font-size: 1.1rem;
    }
}
