/* サポート系ページ共通
   2色システム: 構造=紺(#1f3c5f)、アクション=緑(--color-primary)。
   紺の題字帯 + 交互の薄グレー全幅バンドでリズムを付ける */

body {
  overflow-x: clip; /* 全幅バンド(50vw)のスクロールバー分のはみ出しを抑える */
}

.product-hero.-support {
  height: auto;
  background: #1f3c5f;
  background-image: none;
  border-bottom: 4px solid var(--color-primary);
  margin-bottom: 32px;
  padding: 40px 16px;
  justify-content: center;
}

.product-hero.-support::before {
  background: none;
}

.product-hero-content.-support {
  width: 100%;
  max-width: 960px;
  text-align: left;
}

.product-hero.-support .product-hero-title {
  color: var(--color-white);
  text-shadow: none;
  font-size: 28px;
  border-left: 6px solid var(--color-primary);
  padding-left: 14px;
  line-height: 1.3;
}

.product-hero.-support .product-hero-sub {
  color: #b9c7d6;
  font-size: 0.95rem;
  margin: 10px 0 0;
  padding-left: 20px;
}

.support-page {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 1rem 4rem;
}

.support-section {
  margin-bottom: 3rem;
}

/* 偶数セクションは薄グレーの全幅バンドにしてリズムを付ける */
.support-section:nth-of-type(even) {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 2.25rem calc(50vw - 50%);
  background: #f5f7f9;
  border-top: 1px solid #e5eaee;
  border-bottom: 1px solid #e5eaee;
}

/* 見出し: products-item.css の緑下線を上書きし、紺のバンド見出しにする */
.support-page .product-category-title {
  font-size: 20px;
  color: #16324f;
  background: #eef2f7;
  border-bottom: none;
  border-left: 5px solid #1f3c5f;
  padding: 0.7rem 1rem;
  margin: 0 0 1.5rem;
  line-height: 1.4;
}

.support-section:nth-of-type(even) .product-category-title {
  background: var(--color-white);
  border: 1px solid #d9dee2;
  border-left: 5px solid #1f3c5f;
}

.support-lead,
.support-section-intro {
  color: #475569;
  line-height: 1.8;
  margin: 0 0 1.5rem;
}

.support-list-box {
  list-style: none;
  margin: 0;
  padding: 0;
  border: 1px solid #d9dee2;
  border-radius: var(--radius-sm);
  background: var(--color-white);
}

.support-list-box li {
  position: relative;
  padding: 1rem 1.25rem 1rem 3rem;
  border-bottom: 1px solid #e5eaee;
}

.support-list-box li:last-child {
  border-bottom: none;
}

.support-list-box li::before {
  content: '\2713';
  position: absolute;
  top: 1rem;
  left: 1.25rem;
  color: var(--color-primary);
  font-weight: 700;
}

.support-list-box strong {
  display: block;
  color: var(--color-dark);
  font-size: 1rem;
  line-height: 1.5;
}

.support-list-box span {
  display: block;
  margin-top: 0.25rem;
  color: #475569;
  font-size: 0.88rem;
  line-height: 1.7;
}

.support-info-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #d9dee2;
  background: var(--color-white);
}

.support-info-table th,
.support-info-table td {
  border: 1px solid #d9dee2;
  padding: 0.9rem 1rem;
  line-height: 1.8;
  vertical-align: top;
}

.support-info-table th {
  width: 30%;
  background: #eef2f7;
  color: #16324f;
  text-align: left;
  font-weight: 700;
}

.support-info-table td a[href^="tel"] {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-primary-dark);
  text-decoration: none;
}

.support-info-table td {
  color: #334155;
}

.support-note-box {
  border-left: 4px solid #94a3b8;
  background: #f8f9fa;
  padding: 1.1rem 1.25rem;
  color: #475569;
  line-height: 1.8;
}

.support-note-box p {
  margin: 0 0 0.75rem;
}

.support-note-box p:last-child {
  margin-bottom: 0;
}

.support-note-box ul {
  margin: 0;
  padding-left: 1.25rem;
}

.support-note-box li {
  margin-bottom: 0.35rem;
}

.support-note-box li:last-child {
  margin-bottom: 0;
}

.support-alert-box {
  border: 1px solid #c6d3e2;
  border-left: 4px solid #1f3c5f;
  background: #eef2f7;
  padding: 1.1rem 1.25rem;
  color: #334155;
  line-height: 1.8;
}

.support-alert-title {
  margin: 0 0 0.4rem;
  color: #16324f;
  font-weight: 700;
}

.support-alert-box p:last-child {
  margin-bottom: 0;
}

.support-faq {
  border-top: 1px solid #d9dee2;
}

.faq-item {
  border-bottom: 1px solid #d9dee2;
  padding: 1.1rem 0.25rem;
}

.faq-q {
  position: relative;
  padding-left: 1.8rem;
  font-weight: 700;
  color: var(--color-dark);
  margin: 0 0 0.4rem;
}

.faq-q::before {
  content: 'Q.';
  position: absolute;
  left: 0;
  color: #1f3c5f;
  font-weight: 700;
}

.faq-a {
  position: relative;
  padding-left: 1.8rem;
  font-size: 0.92rem;
  line-height: 1.9;
  color: #475569;
  margin: 0;
}

.faq-a::before {
  content: 'A.';
  position: absolute;
  left: 0;
  color: #94a3b8;
  font-weight: 700;
}

.support-link-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid #d9dee2;
  border-radius: var(--radius-sm);
  padding: 1.25rem;
  background: var(--color-white);
}

.support-link-row p {
  margin: 0;
  color: #475569;
  line-height: 1.8;
}

a.support-outline-button,
a.support-outline-button:link,
a.support-outline-button:visited {
  display: inline-block;
  flex: 0 0 auto;
  padding: 0.6rem 1.25rem;
  border: 1px solid var(--color-primary);
  border-radius: var(--radius-sm);
  background: var(--color-white);
  color: var(--color-primary-dark);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}

a.support-outline-button:hover {
  background: var(--color-primary-light);
  color: var(--color-primary-dark);
}

/* 本文 + 製品写真の2カラム */
.support-section-grid {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 1.5rem;
  align-items: start;
}

.support-section-figure {
  margin: 0;
  border: 1px solid #d9dee2;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--color-white);
}

.support-section-figure img {
  display: block;
  width: 100%;
  height: auto;
}

.support-section-figure figcaption {
  font-size: 0.78rem;
  color: #64748b;
  padding: 0.5rem 0.75rem;
  border-top: 1px solid #e5eaee;
  line-height: 1.6;
}

.support-page .installation-guide {
  margin-bottom: 0;
}

.support-page .installation-step {
  border: 1px solid #d9dee2;
  border-radius: var(--radius-sm);
  box-shadow: none;
}

.support-page .step-content p {
  color: #475569;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .product-hero.-support {
    padding: 24px 16px;
  }

  .product-hero.-support .product-hero-title {
    font-size: 22px;
  }

  .support-section {
    margin-bottom: 2.5rem;
  }

  .support-info-table th,
  .support-info-table td {
    display: block;
    width: 100%;
  }

  .support-section:nth-of-type(even) {
    padding-top: 1.75rem;
    padding-bottom: 1.75rem;
  }

  .support-section-grid {
    grid-template-columns: 1fr;
  }

  .support-section-figure {
    max-width: 320px;
  }

  .support-link-row {
    display: block;
  }

  .support-outline-button {
    margin-top: 1rem;
  }
}
