/* ================================================
   ZETTA TECHNOLOGY - ADAM-WEBOLAP PAGE STYLESHEET
   webolap.css
   依存: style.css / products.css
   ================================================ */

#container {
  display: block;
  width: 100%;
}

/* -----------------------------------------------
   メインコンテンツエリア
----------------------------------------------- */
.webolap-body {
    padding: 48px 0 64px;
    background: var(--bg-white, #fff);
}

/* -----------------------------------------------
   セクション
----------------------------------------------- */
.webolap-section {
    padding-bottom: 40px;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--border, #e0e4f0);
}

.webolap-section--last {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.webolap-section__heading {
    margin-bottom: 24px;
}

.webolap-section__title {
    font-family: var(--font-serif-ja, 'Noto Serif JP', serif);
    font-size: clamp(20px, 3vw, 26px);
    font-weight: 700;
    color: var(--brand-navy, #0d1b3e);
    margin: 0;
    line-height: 1.4;
}

/* -----------------------------------------------
   製品概要ブロック
----------------------------------------------- */
.webolap-overview {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}

.webolap-overview__img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius, 8px);
    border: 1px solid var(--border, #e0e4f0);
    box-shadow: var(--shadow-sm, 0 2px 8px rgba(0,0,0,0.06));
}

/* webolap.cssでは支援用に detail-text を再定義（support.cssの.detail-textと同等） */
.webolap-body .detail-text {
    font-size: 14px;
    color: var(--text-secondary, #4a4a6a);
    line-height: 1.9;
    margin: 0;
}

/* -----------------------------------------------
   関連製品リンクカード
----------------------------------------------- */
.webolap-link-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.webolap-link-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    background: var(--bg-white, #fff);
    border: 1px solid var(--border, #e0e4f0);
    border-radius: var(--radius, 8px);
    box-shadow: var(--shadow-sm, 0 2px 8px rgba(0,0,0,0.06));
    transition: box-shadow 0.28s ease, border-color 0.28s ease, transform 0.28s ease;
    text-decoration: none;
}

.webolap-link-card:hover {
    box-shadow: var(--shadow-md, 0 8px 32px rgba(0,0,0,0.10));
    border-color: var(--brand-red, #990000);
    transform: translateY(-2px);
}

.webolap-link-card__body {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.webolap-link-card__label {
    font-family: var(--font-en, 'Rajdhani', sans-serif);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--brand-red, #990000);
}

.webolap-link-card__name {
    font-size: 16px;
    font-weight: 700;
    color: var(--brand-navy, #0d1b3e);
    line-height: 1.4;
}

.webolap-link-card__desc {
    font-size: 12px;
    color: var(--text-light, #8888aa);
}

.webolap-link-card__arrow {
    width: 36px;
    height: 36px;
    background: var(--bg-section, #f2f4fa);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--brand-navy, #0d1b3e);
    transition: background 0.28s ease, color 0.28s ease;
}

.webolap-link-card:hover .webolap-link-card__arrow {
    background: var(--brand-red, #990000);
    color: #fff;
}

/* -----------------------------------------------
   レスポンシブ
----------------------------------------------- */
@media screen and (max-width: 767px) {
    .webolap-body {
        padding: 32px 0 48px;
    }

    .webolap-link-grid {
        grid-template-columns: 1fr;
    }

    .webolap-link-card {
        padding: 16px 18px;
    }
}
/* ================================================
   PAGE HERO（製品ヒーロー）
   ================================================ */
.wo-hero {
  background: var(--brand-navy);
  padding: 56px 0 48px;
  position: relative;
  overflow: hidden;
}

.wo-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,200,232,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,200,232,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.wo-hero-orb {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(153,0,0,0.20) 0%, transparent 70%);
  top: -120px;
  right: -80px;
  pointer-events: none;
}

.wo-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.wo-hero-product-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-cyan);
  margin-bottom: 10px;
}

.wo-hero-product-tag::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--accent-cyan);
}

.wo-hero-catch {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 10px;
}

.wo-hero-title {
  font-family: var(--font-serif-ja);
  font-size: clamp(22px, 3.2vw, 36px);
  font-weight: 700;
  color: #fff;
  line-height: 1.5;
  margin-bottom: 16px;
}

.wo-hero-title em {
  font-style: normal;
  color: var(--accent-cyan);
}

.wo-hero-lead {
  font-size: 14px;
  color: rgba(255,255,255,0.72);
  line-height: 1.85;
  margin-bottom: 28px;
}

/* 右側：特徴バナー（緑系） */
.wo-hero-banner {
  background: rgba(0,184,160,0.12);
  border: 1px solid rgba(0,184,160,0.40);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
}

.wo-hero-banner-label {
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-teal);
  margin-bottom: 12px;
}

.wo-hero-banner-copy {
  font-family: var(--font-serif-ja);
  font-size: clamp(15px, 1.8vw, 19px);
  font-weight: 700;
  color: #fff;
  line-height: 1.6;
  margin-bottom: 20px;
}

.wo-hero-banner-points {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.wo-hero-banner-point {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.82);
  line-height: 1.6;
}

.wo-hero-banner-point::before {
  content: '✓';
  color: var(--accent-teal);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ================================================
   PAGE NAV（アンカーメニュー）
   ================================================ */
.wo-page-nav {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 68px;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}

.wo-page-nav-list {
  display: flex;
  align-items: center;
  overflow-x: auto;
  scrollbar-width: none;
}

.wo-page-nav-list::-webkit-scrollbar { display: none; }

.wo-page-nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 14px 18px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: var(--transition);
  text-decoration: none;
}

.wo-page-nav-link:hover,
.wo-page-nav-link.active {
  color: var(--brand-red);
  border-bottom-color: var(--brand-red);
}

/* ================================================
   セクション共通
   ================================================ */
.wo-section {
  padding: 72px 0;
  scroll-margin-top: 120px;
}

.wo-section-alt {
  background: var(--bg-light);
}

.wo-section-dark {
  background: var(--brand-navy);
  position: relative;
  overflow: hidden;
}

.wo-section-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,200,232,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,200,232,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.wo-section-dark .section-tag  { color: var(--accent-cyan); }
.wo-section-dark .section-tag::before { background: var(--accent-cyan); }
.wo-section-dark .section-title { color: #fff; }

/* ================================================
   2カラム詳細レイアウト
   ================================================ */
.wo-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-top: 40px;
}

.wo-detail-grid.img-right .wo-detail-img { order: 2; }
.wo-detail-grid.img-right .wo-detail-body { order: 1; }

.wo-detail-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  background: var(--bg-section);
  display: flex;
  align-items: center;
  justify-content: center;
}

.wo-detail-img img {
  width: 100%;
  height: auto;
  display: block;
}

.wo-detail-title {
  font-family: var(--font-serif-ja);
  font-size: clamp(17px, 2.2vw, 22px);
  font-weight: 700;
  color: var(--brand-navy);
  line-height: 1.5;
  margin-bottom: 12px;
}

.wo-detail-text {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 16px;
}

/* ●リスト */
.wo-kuromaru-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.wo-kuromaru-list li {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.7;
  padding-left: 18px;
  position: relative;
}

.wo-kuromaru-list li::before {
  content: '●';
  position: absolute;
  left: 0;
  top: 4px;
  font-size: 7px;
  color: var(--brand-navy);
}

/* ================================================
   特徴カード
   ================================================ */
.wo-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.wo-feature-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: var(--transition);
}

.wo-feature-card:hover {
  border-color: var(--brand-red);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.wo-feature-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border-light);
}

.wo-feature-card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: rgba(0,184,160,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.wo-feature-card-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--brand-navy);
  line-height: 1.35;
}

.wo-feature-card-sub {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 2px;
}

.wo-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.wo-feature-list li {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.7;
  padding-left: 18px;
  position: relative;
}

.wo-feature-list li::before {
  content: '●';
  position: absolute;
  left: 0;
  top: 3px;
  font-size: 7px;
  color: var(--brand-red);
}

/* ================================================
   ハイライトボックス
   ================================================ */
.wo-highlight-box {
  background: var(--bg-section);
  border: 2px solid var(--brand-navy);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  margin-top: 32px;
}

.wo-highlight-box-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--brand-navy);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.wo-highlight-box-title::before {
  content: '';
  display: block;
  width: 4px;
  height: 18px;
  background: var(--brand-red);
  border-radius: 2px;
  flex-shrink: 0;
}

.wo-highlight-box-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.85;
}

/* 注記ボックス */
.wo-note-box {
  margin-top: 16px;
  padding: 12px 18px;
  background: rgba(0,0,0,0.03);
  border-left: 3px solid var(--accent-teal);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.75;
}

.wo-note-box a {
  color: var(--brand-red);
  text-decoration: underline;
}

/* ================================================
   機能カード（3カラムグリッド）
   ================================================ */
.wo-func-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.wo-func-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  transition: var(--transition);
}

.wo-func-card:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(0,200,232,0.4);
}

.wo-func-card-icon {
  font-size: 32px;
  margin-bottom: 14px;
}

.wo-func-card-label {
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-teal);
  margin-bottom: 8px;
}

.wo-func-card-title {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  line-height: 1.45;
  margin-bottom: 10px;
}

.wo-func-card-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
}

/* ================================================
   仕様テーブル
   ================================================ */
.wo-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  margin-top: 24px;
}

.wo-spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  line-height: 1.7;
  min-width: 540px;
}

.wo-spec-table thead th {
  background: var(--brand-navy);
  color: #fff;
  font-weight: 700;
  padding: 12px 18px;
  text-align: left;
  border: 1px solid rgba(255,255,255,0.12);
  font-size: 12px;
}

.wo-spec-table tbody th {
  background: var(--bg-section);
  color: var(--brand-navy);
  font-weight: 700;
  padding: 12px 18px;
  border: 1px solid var(--border);
  vertical-align: top;
  width: 28%;
}

.wo-spec-table tbody td {
  padding: 14px 18px;
  border: 1px solid var(--border);
  color: var(--text-secondary);
  vertical-align: top;
}

.wo-spec-table tbody tr:nth-child(odd) td,
.wo-spec-table tbody tr:nth-child(odd) th {
  background: var(--bg-light);
}

.wo-spec-table tbody tr:nth-child(even) td,
.wo-spec-table tbody tr:nth-child(even) th {
  background: #fff;
}

.wo-spec-table tbody tr:hover td,
.wo-spec-table tbody tr:hover th {
  background: rgba(153,0,0,0.03);
}

/* ================================================
   仕様グリッド
   ================================================ */
.wo-spec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}

.wo-spec-block {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
}

.wo-spec-block-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--brand-navy);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--brand-red);
}

.wo-spec-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.wo-spec-list li {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.7;
  padding-left: 18px;
  position: relative;
}

.wo-spec-list li::before {
  content: '●';
  position: absolute;
  left: 0;
  top: 4px;
  font-size: 7px;
  color: var(--brand-red);
}

/* ================================================
   CTA（お問い合わせ）
   ================================================ */
.wo-inquiry-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--brand-red-dark) 0%, var(--brand-red) 100%);
  position: relative;
  overflow: hidden;
  scroll-margin-top: 120px;
}

.wo-inquiry-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(255,255,255,0.08), transparent 60%);
}

.wo-inquiry-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.wo-inquiry-title {
  font-family: var(--font-serif-ja);
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 700;
  color: #fff;
  line-height: 1.5;
  margin-bottom: 12px;
}

.wo-inquiry-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.82);
  line-height: 1.75;
  margin-bottom: 28px;
}

.wo-inquiry-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ================================================
   パンくず
   ================================================ */
#plist {
  background: var(--bg-light);
  border-bottom: 1px solid var(--border-light);
  padding: 10px 0;
}

#plist ol {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  font-size: 12px;
  color: var(--text-light);
}

#plist ol li::after {
  content: '›';
  margin-left: 6px;
  color: var(--text-light);
}

#plist ol li:last-child::after { content: none; }

#plist ol li a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--transition);
}

#plist ol li a:hover { color: var(--brand-red); }

/* ================================================
   商標テキスト
   ================================================ */
.wo-trademark {
  padding: 32px 0 24px;
  font-size: 11px;
  color: var(--text-light);
  line-height: 1.8;
  border-top: 1px solid var(--border);
}

/* ================================================
   スクロールリビール
   ================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ================================================
   section-header
   ================================================ */
.section-header {
  margin-bottom: 40px;
}

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 1024px) {
  .wo-hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .wo-hero-orb { display: none; }
  .wo-detail-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .wo-detail-grid.img-right .wo-detail-img { order: 0; }
  .wo-detail-grid.img-right .wo-detail-body { order: 0; }
  .wo-feature-grid { grid-template-columns: 1fr; }
  .wo-func-grid { grid-template-columns: 1fr 1fr; }
  .wo-spec-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .wo-hero,
  .wo-section { padding: 48px 0; }
  .wo-func-grid { grid-template-columns: 1fr; }
  .wo-inquiry-section { padding: 56px 0; }
  .wo-inquiry-actions { flex-direction: column; }
  .wo-spec-table th,
  .wo-spec-table td { padding: 10px 12px; font-size: 12px; }
}

/* ================================================
   サブページ共通レイアウト
   ================================================ */

/* サブページ ページタイトルヘッダー */
.wo-sub-hero {
  background: var(--brand-navy);
  padding: 40px 0 36px;
  position: relative;
  overflow: hidden;
}

.wo-sub-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,200,232,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,200,232,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.wo-sub-hero-inner {
  position: relative;
  z-index: 1;
}

.wo-sub-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-teal);
  margin-bottom: 10px;
}

.wo-sub-hero-tag::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--accent-teal);
}

.wo-sub-hero-title {
  font-family: var(--font-serif-ja);
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
  margin-bottom: 10px;
}

.wo-sub-hero-lead {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
}

/* ================================================
   サブナビゲーション（タブ型）
   ================================================ */
.wo-subnav {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 68px;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}

.wo-subnav-list {
  display: flex;
  align-items: center;
  overflow-x: auto;
  scrollbar-width: none;
  list-style: none;
  padding: 0;
  margin: 0;
}

.wo-subnav-list::-webkit-scrollbar { display: none; }

.wo-subnav-list li {
  flex-shrink: 0;
}

.wo-subnav-link {
  display: flex;
  align-items: center;
  padding: 14px 20px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: var(--transition);
  text-decoration: none;
}

.wo-subnav-link:hover {
  color: var(--brand-red);
  border-bottom-color: var(--brand-red);
}

.wo-subnav-link.current {
  color: var(--brand-red);
  border-bottom-color: var(--brand-red);
  font-weight: 700;
}

/* ================================================
   サブページ 本文エリア
   ================================================ */
.wo-content {
  padding: 60px 0 80px;
}

.wo-content-alt {
  background: var(--bg-light);
}

/* ================================================
   サブページ セクション見出し
   ================================================ */
.wo-section-title-lg {
  font-family: var(--font-serif-ja);
  font-size: clamp(20px, 2.8vw, 30px);
  font-weight: 700;
  color: var(--brand-navy);
  line-height: 1.45;
  margin-bottom: 10px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--border);
}

.wo-section-title-lg span {
  display: block;
  font-size: 13px;
  font-family: var(--font-ja);
  font-weight: 400;
  color: var(--text-light);
  margin-top: 4px;
  padding-bottom: 0;
  border-bottom: none;
}

.wo-section-lead-text {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 32px;
}

/* ================================================
   コンテンツ2カラムグリッド（画像＋テキスト）
   ================================================ */
.wo-img-text-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  align-items: start;
  margin-bottom: 48px;
}

.wo-img-text-grid.reverse {
  grid-template-columns: 1fr auto;
}

.wo-img-text-grid.reverse .wo-img-col { order: 2; }
.wo-img-text-grid.reverse .wo-text-col { order: 1; }

.wo-img-col img {
  display: block;
  max-width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.wo-text-col h3 {
  font-family: var(--font-serif-ja);
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 700;
  color: var(--brand-navy);
  line-height: 1.5;
  margin-bottom: 12px;
}

.wo-text-col p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 12px;
}

.wo-text-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.wo-text-col ul li {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.7;
  padding-left: 18px;
  position: relative;
}

.wo-text-col ul li::before {
  content: '●';
  position: absolute;
  left: 0;
  top: 4px;
  font-size: 7px;
  color: var(--brand-red);
}

/* ================================================
   全幅画像ブロック
   ================================================ */
.wo-full-img {
  margin: 32px 0;
  text-align: center;
}

.wo-full-img img {
  max-width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  display: inline-block;
}

.wo-full-img-caption {
  margin-top: 10px;
  font-size: 12px;
  color: var(--text-light);
  text-align: right;
}

/* ================================================
   2カラムカードグリッド（特長等）
   ================================================ */
.wo-card-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 32px;
}

.wo-card-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.wo-content-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: var(--transition);
}

.wo-content-card:hover {
  border-color: rgba(0,184,160,0.5);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.wo-content-card-img {
  margin-bottom: 16px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-light);
}

.wo-content-card-img img {
  width: 100%;
  display: block;
}

.wo-content-card-color-bar {
  width: 32px;
  height: 4px;
  border-radius: 2px;
  margin-bottom: 12px;
}

.wo-content-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--brand-navy);
  line-height: 1.4;
  margin-bottom: 10px;
}

.wo-content-card p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.75;
}

.wo-content-card ul {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.wo-content-card ul li {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.65;
  padding-left: 16px;
  position: relative;
}

.wo-content-card ul li::before {
  content: '・';
  position: absolute;
  left: 0;
  color: var(--text-light);
}

/* ================================================
   OLAPリストボックス
   ================================================ */
.wo-olap-listbox {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 22px;
  background: var(--bg-light);
}

.wo-olap-listbox ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.wo-olap-listbox ul li {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.7;
  padding-left: 16px;
  position: relative;
}

.wo-olap-listbox ul li::before {
  content: '・';
  position: absolute;
  left: 0;
  color: var(--accent-teal);
  font-weight: 700;
}

/* ================================================
   セパレータ
   ================================================ */
.wo-sep {
  height: 1px;
  background: var(--border);
  margin: 48px 0;
}

/* ================================================
   動作環境テーブル
   ================================================ */
.wo-req-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  margin-bottom: 32px;
}

.wo-req-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  line-height: 1.75;
  min-width: 480px;
}

.wo-req-table caption {
  caption-side: top;
  text-align: left;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-light);
  padding: 10px 18px 6px;
  letter-spacing: 0.05em;
}

.wo-req-table thead th {
  background: var(--brand-navy);
  color: #fff;
  font-weight: 700;
  padding: 11px 18px;
  text-align: left;
  border: 1px solid rgba(255,255,255,0.12);
  font-size: 12px;
}

.wo-req-table tbody th {
  background: var(--bg-section);
  color: var(--brand-navy);
  font-weight: 700;
  padding: 12px 18px;
  border: 1px solid var(--border);
  vertical-align: top;
  white-space: nowrap;
  width: 180px;
}

.wo-req-table tbody td {
  padding: 12px 18px;
  border: 1px solid var(--border);
  color: var(--text-secondary);
  vertical-align: top;
  line-height: 1.8;
}

.wo-req-table tbody tr:nth-child(odd) td,
.wo-req-table tbody tr:nth-child(odd) th {
  background: var(--bg-light);
}

.wo-req-table tbody tr:nth-child(even) td,
.wo-req-table tbody tr:nth-child(even) th {
  background: #fff;
}

.wo-req-note {
  margin-top: 12px;
  font-size: 12px;
  color: var(--brand-red);
  line-height: 1.75;
}

.wo-req-note a {
  color: var(--brand-red);
  text-decoration: underline;
}

/* ================================================
   システム構成 フロー図エリア
   ================================================ */
.wo-flow-img-wrap {
  margin: 32px 0;
  text-align: center;
}

.wo-flow-img-wrap img {
  max-width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  display: inline-block;
}

/* ================================================
   適用例 サンプルカード
   ================================================ */
.wo-example-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 32px;
}

.wo-example-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 0;
  overflow: hidden;
  transition: var(--transition);
}

.wo-example-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.wo-example-card-header {
  padding: 18px 22px 14px;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  gap: 10px;
}

.wo-example-card-header-icon {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.wo-example-card-header h3 {
  font-size: 13px;
  font-weight: 700;
  color: var(--brand-navy);
  line-height: 1.4;
}

.wo-example-card-header h4 {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-secondary);
  margin-top: 2px;
}

.wo-example-card-img {
  overflow: hidden;
  background: var(--bg-section);
}

.wo-example-card-img img {
  width: 100%;
  display: block;
  transition: transform 0.4s ease;
}

.wo-example-card:hover .wo-example-card-img img {
  transform: scale(1.02);
}

.wo-example-card-body {
  padding: 18px 22px;
}

.wo-example-card-body h5 {
  font-size: 12px;
  font-weight: 700;
  color: var(--brand-navy);
  margin-bottom: 8px;
}

.wo-example-card-body ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.wo-example-card-body ul li {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.65;
  padding-left: 16px;
  position: relative;
}

.wo-example-card-body ul li::before {
  content: '・';
  position: absolute;
  left: 0;
  color: var(--text-light);
}

/* 適用例リストグリッド */
.wo-example-list-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 32px;
}

.wo-example-list-block {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 22px;
}

.wo-example-list-block h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--brand-navy);
  line-height: 1.45;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--brand-red);
  display: flex;
  align-items: center;
  gap: 8px;
}

.wo-example-list-block h3 .wo-color-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.wo-example-list-item {
  margin-bottom: 16px;
}

.wo-example-list-item:last-child { margin-bottom: 0; }

.wo-example-list-item h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--brand-navy);
  margin-bottom: 4px;
}

.wo-example-list-item p {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ================================================
   開発支援 機能グリッド
   ================================================ */
.wo-dev-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 32px;
}

.wo-dev-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.wo-dev-block h3 {
  font-family: var(--font-serif-ja);
  font-size: clamp(15px, 1.8vw, 18px);
  font-weight: 700;
  color: var(--brand-navy);
  line-height: 1.45;
  padding-left: 12px;
  border-left: 3px solid var(--accent-teal);
}

.wo-dev-block p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.75;
}

.wo-dev-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.wo-dev-block ul li {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.65;
  padding-left: 16px;
  position: relative;
}

.wo-dev-block ul li::before {
  content: '●';
  position: absolute;
  left: 0;
  top: 4px;
  font-size: 6px;
  color: var(--accent-teal);
}

.wo-dev-block-img {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-section);
}

.wo-dev-block-img img {
  width: 100%;
  display: block;
}

/* レイアウト選択行 */
.wo-dev-inline-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}

.wo-dev-inline-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--brand-navy);
  white-space: nowrap;
  flex-shrink: 0;
}

.wo-dev-inline-img img {
  display: block;
  max-width: 100%;
}

/* ================================================
   RESPONSIVE 追記
   ================================================ */
@media (max-width: 1024px) {
  .wo-card-grid-2  { grid-template-columns: 1fr; }
  .wo-card-grid-3  { grid-template-columns: 1fr 1fr; }
  .wo-example-grid { grid-template-columns: 1fr; }
  .wo-example-list-grid { grid-template-columns: 1fr; }
  .wo-dev-grid     { grid-template-columns: 1fr; }
  .wo-img-text-grid { grid-template-columns: 1fr; }
  .wo-img-text-grid.reverse .wo-img-col { order: 0; }
  .wo-img-text-grid.reverse .wo-text-col { order: 0; }
}

@media (max-width: 768px) {
  .wo-sub-hero { padding: 32px 0 28px; }
  .wo-content { padding: 40px 0 60px; }
  .wo-card-grid-3 { grid-template-columns: 1fr; }
  .wo-req-table th,
  .wo-req-table td { padding: 9px 12px; font-size: 12px; }
}
