

/* ------------------------------
   6. 記事ヘッダー・基本情報
------------------------------ */
.article {
  margin-bottom: 40px;
}

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

.article-category {
  font-size: 13px;
  margin-bottom: 8px;
}

.category-pill {
  display: inline-block;
  padding: 3px 8px;
  margin-right: 4px;
  border-radius: 999px;
  background: #ffe4ea;
  color: #b3001f;
  font-size: 11px;
  font-weight: 700;
}

.article-header h1 {
  font-size: 1.7rem;
  margin: 4px 0 10px;
  line-height: 1.45;
}

.article-meta {
  font-size: 12px;
  color: #777;
  display: flex;
  gap: 10px;
  align-items: center;
}

/* アイキャッチ */
.article-eyecatch {
  margin: 16px 0 10px;
}

.article-eyecatch img {
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.18);
}

.article-eyecatch figcaption {
  font-size: 12px;
  color: #777;
  margin-top: 4px;
}

/* リード文 */
.article-lead {
  background: var(--alex-soft);
  border-left: 6px solid var(--alex-red);
  padding: 10px 12px;
  border-radius: 6px;
  margin-top: 12px;
  font-size: 0.98rem;
}

/* ------------------------------
   7. 総合評価エリア
------------------------------ */
.article-rating {
  margin-top: 22px;
  padding: 16px 14px;
  border-radius: 12px;
  background: radial-gradient(circle at top left, rgba(228,185,43,0.16), transparent 60%),
              #ffffff;
  border: 1px solid var(--border-soft);
}

.article-rating .section-title {
  margin-top: 0;
}

.rating {
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-size: 0.98rem;
}

.stars {
  font-size: 1.1rem;
  color: #ffbf00;
}

.rating-text {
  font-size: 0.9rem;
  color: #555;
}

.rating-detail {
  margin: 10px 0 0;
  padding-left: 18px;
  font-size: 0.9rem;
}

.rating-detail li {
  margin-bottom: 2px;
}

/* ------------------------------
   8. セクション見出し・本文
------------------------------ */
.section {
  margin-top: 26px;
}

.section-title {
  font-size: 1.35rem;
  border-left: 8px solid var(--alex-gold);
  padding-left: 10px;
  background: linear-gradient(90deg, var(--alex-soft), transparent 55%);
  border-radius: 4px;
  margin-bottom: 12px;
}

.article h3 {
  font-size: 1.1rem;
  margin-top: 1.2rem;
  padding: 6px 10px;
  border-left: 5px solid var(--alex-red);
  background: rgba(196,2,39,0.10);
  border-radius: 5px;
}

.section p {
  margin: 8px 0;
}

.section ul {
  margin: 8px 0 14px;
  padding-left: 18px;
}

.section li {
  margin-bottom: 5px;
}

/* 強調 */
.article strong {
  color: var(--alex-red);
  font-weight: 700;
}

/* ------------------------------
   9. 2カラムグリッド（スペック＋解説）
------------------------------ */
.grid {
  display: grid;
  gap: 18px;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

/* ------------------------------
   10. スペック表
------------------------------ */
.table-wrapper {
  width: 100%;
  overflow-x: auto;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 6px;
  font-size: 0.9rem;
  border: 1px solid var(--border-soft);
}

.spec-table th,
.spec-table td {
  border: 1px solid var(--border-soft);
  padding: 7px 8px;
  text-align: center;
}

.spec-table tbody th {
  text-align: left;
}

.spec-table thead th {
  background: var(--alex-soft);
  font-weight: 700;
  color: var(--alex-black);
}

.spec-table tbody tr:nth-child(even) {
  background: #fffbf1;
}

/* ------------------------------
   11. 良かった点・微妙だった点
------------------------------ */
.pros-cons {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 18px;
}

.pros, .cons {
  flex: 1 1 48%;
  background: #ffffff;
  padding: 16px 18px;
  border-radius: 12px;
  border: 2px solid var(--border-soft);
  box-shadow: 0px 4px 10px rgba(0,0,0,0.04);
  transition: 0.25s ease;
}

/* ホバーで少し浮く */
.pros:hover, .cons:hover {
  transform: translateY(-3px);
  box-shadow: 0px 6px 16px rgba(0,0,0,0.10);
}

/* タイトル（良かったところ） */
.pros h3 {
  margin-top: 0;
  margin-bottom: 6px;
  padding-left: 10px;
  border-left: 6px solid var(--alex-red);
  color: var(--alex-red);
  font-size: 1.02rem;
}

/* タイトル（微妙だったところ） */
.cons h3 {
  margin-top: 0;
  margin-bottom: 6px;
  padding-left: 10px;
  border-left: 6px solid var(--alex-black);
  color: var(--alex-black);
  font-size: 1.02rem;
}

.pros ul,
.cons ul {
  margin: 0;
  padding-left: 18px;
}

.pros li,
.cons li {
  margin-bottom: 7px;
  line-height: 1.65;
  font-size: 0.95rem;
}

.pros strong,
.cons strong {
  color: var(--alex-gold);
  font-weight: 700;
}

/* ------------------------------
   12. サイドバー
------------------------------ */
.sidebar .card {
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.06);
  padding: 16px;
}

.widget-title {
  font-size: 1.02rem;
  border-left: 6px solid var(--alex-red);
  padding-left: 8px;
  margin-top: 0;
  margin-bottom: 10px;
}

.machine-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.machine-list li {
  margin-bottom: 6px;
  font-size: 0.93rem;
}

.machine-list a {
  color: #444;
}

.machine-list a:hover {
  color: var(--alex-red);
}

/* ------------------------------
   13. フッター
------------------------------ */
.site-footer {
  background: var(--alex-black);
  color: #ccc;
  text-align: center;
  padding: 18px 0;
  margin-top: 40px;
  font-size: 13px;
}

.footer-inner {
  width: 95%;
  max-width: 1100px;
  margin: 0 auto;
}

.footer-nav {
  margin-top: 4px;
  display: flex;
  justify-content: center;
  gap: 14px;
  font-size: 12px;
}

.site-footer a {
  color: #fff;
}

/* ------------------------------
   14. スマホ対応
------------------------------ */
@media (max-width: 900px) {
  .main-layout {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 768px) {
  .article-header h1 {
    font-size: 1.45rem;
  }

  .section-title {
    font-size: 1.18rem;
  }

  .grid-2 {
    grid-template-columns: minmax(0, 1fr);
  }

  .pros,
  .cons {
    flex: 1 1 100%;
  }

  .spec-table {
    font-size: 0.8rem;
  }
}


