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

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



/* ================================================
   PAGE HERO
   ================================================ */
.wr-hero {
  background: var(--brand-navy);
  padding: 56px 0 48px;
  position: relative;
  overflow: hidden;
}

.wr-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;
}

.wr-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;
}

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

.wr-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;
}

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

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

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

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

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

/* 右側：バナー */
.wr-hero-banner {
  background: rgba(153,0,0,0.18);
  border: 1px solid rgba(153,0,0,0.45);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
}

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

.wr-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;
}

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

.wr-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;
}

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

.wr-hero-ext-link {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.wr-hero-ext-link a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--accent-cyan);
  text-decoration: none;
  transition: var(--transition);
}

.wr-hero-ext-link a:hover { color: #fff; }

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

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

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

.wr-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;
}

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

/* ================================================
   ターゲット別訴求カード
   ================================================ */
.wr-target-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.wr-target-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.wr-target-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.wr-target-card-head {
  padding: 18px 20px;
  color: #fff;
}

.wr-target-card-head-label {
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.75;
  margin-bottom: 6px;
}

.wr-target-card-head-title {
  font-family: var(--font-serif-ja);
  font-size: clamp(14px, 1.6vw, 18px);
  font-weight: 700;
  line-height: 1.4;
}

.wr-target-card-body {
  padding: 20px;
  background: #fff;
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ================================================
   製品概要 2カラム
   ================================================ */
.wr-overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-top: 40px;
}

.wr-overview-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  background: var(--bg-section);
}

.wr-overview-img img {
  width: 100%;
  display: block;
}

.wr-overview-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: 14px;
}

.wr-overview-text {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 16px;
}

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

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

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

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

/* ================================================
   デモ分析一覧（タブ型UI）
   ================================================ */
.wr-demo-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-top: 32px;
}

/* 左パネル */
.wr-demo-sidebar {
  background: var(--brand-navy);
  padding: 0;
}

.wr-demo-sidebar-head {
  padding: 16px 20px;
  background: rgba(0,0,0,0.25);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.wr-demo-sidebar-head-text {
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-cyan);
  margin-bottom: 4px;
}

.wr-demo-sidebar-head-sub {
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
}

.wr-demo-group-label {
  padding: 10px 20px 6px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

.wr-demo-tab-btn {
  display: block;
  width: 100%;
  text-align: left;
  padding: 10px 20px;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  background: none;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  line-height: 1.5;
  border-left: 3px solid transparent;
}

.wr-demo-tab-btn:hover {
  background: rgba(255,255,255,0.06);
  color: #fff;
}

.wr-demo-tab-btn.active {
  background: rgba(0,200,232,0.10);
  color: #fff;
  border-left-color: var(--accent-cyan);
  font-weight: 600;
}

.wr-demo-divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 8px 0;
}

/* 右パネル */
.wr-demo-main {
  background: #fff;
  display: flex;
  flex-direction: column;
}

.wr-demo-panel {
  display: none;
  flex: 1;
}

.wr-demo-panel.active {
  display: flex;
  flex-direction: column;
}

.wr-demo-panel-img {
  border-bottom: 1px solid var(--border-light);
  background: var(--bg-section);
  overflow: hidden;
}

.wr-demo-panel-img img {
  width: 100%;
  display: block;
  max-height: 360px;
  object-fit: cover;
  object-position: top;
}

.wr-demo-panel-body {
  padding: 28px 32px;
  flex: 1;
}

.wr-demo-panel-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-red);
  margin-bottom: 10px;
}

.wr-demo-panel-tag::before {
  content: '';
  display: block;
  width: 16px;
  height: 2px;
  background: var(--brand-red);
}

.wr-demo-panel-title {
  font-family: var(--font-serif-ja);
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 700;
  color: var(--brand-navy);
  line-height: 1.45;
  margin-bottom: 6px;
}

.wr-demo-panel-sub {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 16px;
  font-weight: 500;
}

.wr-demo-panel-text {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 14px;
}

.wr-demo-panel-list {
  list-style: none;
  padding: 0;
  margin: 12px 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

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

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

.wr-demo-note {
  margin-top: 12px;
  font-size: 11px;
  color: var(--text-light);
  line-height: 1.7;
}

/* ================================================
   ユーザー別訴求セクション（フル幅画像）
   ================================================ */
.wr-user-section {
  margin-top: 0;
}

.wr-user-block {
  position: relative;
  overflow: hidden;
}

.wr-user-block-head {
  padding: 18px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  border-bottom: 2px solid var(--border);
}

.wr-user-block-head-bar {
  width: 4px;
  height: 28px;
  border-radius: 2px;
  flex-shrink: 0;
}

.wr-user-block-head-title {
  font-family: var(--font-serif-ja);
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 700;
  color: var(--brand-navy);
}

.wr-user-block-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.wr-user-block-img img {
  width: 100%;
  display: block;
}

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

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

.wr-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;
}

.wr-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: 160px;
}

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

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

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

.wr-req-table-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--brand-navy);
  margin-bottom: 12px;
  padding-left: 12px;
  border-left: 3px solid var(--brand-red);
}

/* ================================================
   導入事例カード
   ================================================ */
.wr-case-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 28px;
  transition: var(--transition);
}

.wr-case-card:hover {
  border-color: var(--brand-red);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.wr-case-card-company {
  font-family: var(--font-serif-ja);
  font-size: clamp(15px, 1.8vw, 18px);
  font-weight: 700;
  color: var(--brand-navy);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

.wr-case-card-company a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

.wr-case-card-company a:hover { color: var(--brand-red); }

.wr-case-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  line-height: 1.75;
}

.wr-case-table th {
  width: 90px;
  vertical-align: top;
  color: var(--text-light);
  font-weight: 500;
  padding: 4px 0;
  white-space: nowrap;
}

.wr-case-table td {
  color: var(--text-secondary);
  padding: 4px 0 4px 8px;
  vertical-align: top;
}

/* ================================================
   ポリシーバナー
   ================================================ */
.wr-policy-banner {
  background: linear-gradient(135deg, var(--brand-navy-light) 0%, var(--brand-navy) 100%);
  border-radius: var(--radius-lg);
  padding: 40px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.wr-policy-banner::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;
}

.wr-policy-banner-quote {
  position: relative;
  z-index: 1;
  font-family: var(--font-serif-ja);
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 700;
  color: #fff;
  line-height: 1.55;
  border-left: 4px solid var(--brand-red);
  padding-left: 20px;
}

.wr-policy-banner-desc {
  position: relative;
  z-index: 1;
  font-size: 13px;
  color: rgba(255,255,255,0.72);
  line-height: 1.9;
}

/* ================================================
   CTA
   ================================================ */
.wr-inquiry-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--brand-red-dark) 0%, var(--brand-red) 100%);
  position: relative;
  overflow: hidden;
}

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

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

.wr-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;
}

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

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

/* ================================================
   商標テキスト
   ================================================ */
.wr-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; }

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 1024px) {
  .wr-hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .wr-hero-orb { display: none; }
  .wr-target-grid { grid-template-columns: 1fr; gap: 16px; }
  .wr-overview-grid { grid-template-columns: 1fr; gap: 32px; }
  .wr-demo-layout { grid-template-columns: 1fr; }
  .wr-demo-sidebar { display: grid; grid-template-columns: 1fr 1fr; }
  .wr-policy-banner { grid-template-columns: 1fr; gap: 24px; }
}

@media (max-width: 768px) {
  .wr-hero,
  .wr-section { padding: 48px 0; }
  .wr-target-grid { grid-template-columns: 1fr; }
  .wr-demo-sidebar { display: block; }
  .wr-demo-layout { display: block; }
  .wr-demo-panel-body { padding: 20px; }
  .wr-inquiry-section { padding: 56px 0; }
  .wr-inquiry-actions { flex-direction: column; }
  .wr-policy-banner { padding: 28px 24px; }
  .wr-req-table th,
  .wr-req-table td { padding: 9px 12px; font-size: 12px; }
}
