/* ================================
   Contents / 読み物コラム 共通デザイン
   ================================ */

/* 記事全体コンテナ */
.contents-article {
  max-width: 980px;
  margin: 0 auto 100px;
  padding: 0 16px;
}

/* パンくず */
.contents-article .breadcrumb {
  font-size: 13px;
  margin: 12px 0 28px;
}

.contents-article .breadcrumb ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.contents-article .breadcrumb li::after {
  content: ">";
  margin: 0 6px;
}

.contents-article .breadcrumb li:last-child::after {
  content: "";
}

/* 記事ヘッダー */
.contents-article .article-header {
  margin-bottom: 36px;
}

.contents-article .article-category {
  font-size: 14px;
  color: #888;
  margin-bottom: 10px;
}

.contents-article .article-title {
  font-size: 28px;
  line-height: 1.55;
  margin-bottom: 16px;
}

.contents-article .article-lead {
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 28px;
}

/* セクション */
.contents-article .article-section {
  margin: 55px 0 0;
}

.contents-article .article-section h2 {
  font-size: 22px;
  margin: 0 0 14px;
  padding-left: 10px;
  border-left: 4px solid #21a8ff;
}

.contents-article .article-section h3 {
  font-size: 18px;
  margin: 28px 0 8px;
}

/* テキスト */
.contents-article p {
  font-size: 16px;
  line-height: 1.95;
  margin: 0 0 16px;
}

/* 箇条書き */
.contents-article .article-list {
  margin: 10px 0 20px 22px;
  padding: 0;
}

.contents-article .article-list li {
  margin-bottom: 8px;
}

/* 関連リンク */
.contents-article .article-links {
  list-style: none;
  margin: 12px 0 20px;
  padding: 0;
}

.contents-article .article-links li {
  margin-bottom: 8px;
}

/* CTA ブロック */
.contents-article .article-cta {
  margin-top: 65px;
  padding: 30px 22px;
  border-radius: 14px;
  background: #f0f9ff;
  text-align: center;
}

.contents-article .article-cta h2 {
  border-left: none;
  padding-left: 0;
  margin-bottom: 10px;
}

.contents-article .article-cta p {
  margin-bottom: 16px;
}

.contents-article .article-cta-button .btn-main {
  display: inline-block;
  padding: 12px 32px;
}

/* 表（ビーチ vs ボート） */
.contents-article table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 12px;
  margin: 20px 0 20px;
}

.contents-article th,
.contents-article td {
  padding: 14px 18px;
  vertical-align: middle;
  font-size: 15px;
  line-height: 1.6;
}

.contents-article th {
  background: #e8f3ff;
  font-weight: 600;
}

.contents-article td {
  background: #fafafa;
  border-bottom: 1px solid #e6e6e6;
}

/* スマホ調整 */
@media screen and (max-width: 768px) {
  .contents-article {
    padding: 0 12px 80px;
  }
  .contents-article .article-title {
    font-size: 24px;
  }
  .contents-article th,
  .contents-article td {
    padding: 12px 14px;
    font-size: 14px;
  }
  .contents-article .article-section {
    margin-top: 40px;
  }
}

/* 追加調整（2025/11/29） */

/* h2 見出しのすぐ下の余白 */
.contents-article .article-section h2 {
  margin-bottom: 18px !important;
}

/* h2 の前の余白（section の上マージンを強める） */
.contents-article .article-section {
  margin-top: 65px !important;
}

/* CTA ブロック上側の余白を増やす */
.contents-article .article-cta {
  margin-top: 80px !important;
  padding: 36px 26px !important;
}

/* 表の行間と高さ */
.contents-article th,
.contents-article td {
  padding: 18px 22px !important;
  line-height: 1.8 !important;
}

/* ===== 最終仕上げ（2025/11/29） ===== */

/* h2 見出しブロックの上余白（PC向けに広げる） */
@media screen and (min-width: 769px) {
  .contents-article .article-section {
    margin-top: 80px !important;
  }
}

/* CTAボックス上の余白（PCでの間隔を調整） */
@media screen and (min-width: 769px) {
  .contents-article .article-cta {
    margin-top: 95px !important;
  }
}

