@charset "UTF-8";
/* ==========================================================================
   /digitalsignage/ledvision/sports/  専用CSS
   PITCH VISION & COURT VISION（屋外・屋内競技専用LEDビジョン）

   設置先: /assets/css/digitalsignage/ledvision/sports/sports.css

   ※ このファイルをアップロードすると、テーマの「ページ別CSS自動読み込み」で
   　 sports ページに自動適用されます。
   　 アップロード後は、固定ページ本文の先頭にある下記2行の <link> を
   　 削除してください（不要になります）。
   　   <link ... cybervision/cybervision.css>
   　   <link ... unatural/unatural.css>
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. ページ全体のラッパー
   （cybervision.css 相当。本文の幅・余白の基準になります）
   -------------------------------------------------------------------------- */
.page-led-vision {
  position: relative;
}

.page-led-vision-inner {
  position: relative;
}

/* --------------------------------------------------------------------------
   2. hero（ページ上部のヘッダー領域）
   （unatural.css 相当。ヘッダー画像はここで指定します）
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
}

/* .hero-inner / .hero-content は static にして、
   ヘッダー画像の位置基準を .hero（画面幅いっぱい）にする */
.hero-inner {
  position: static;
  max-width: 1440px;
  margin: 0 auto;
}

/* ヘッダーの高さ（画像は画面全幅の背景として表示） */
.hero-content {
  position: static;
  display: flex;
  align-items: center;
  min-height: clamp(420px, 42vw, 720px);
}

.hero-main {
  position: relative;
  z-index: 2;
  width: 46%;
  padding: 40px 0 40px 40px;
}

.hero-title {
  font-size: 44px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: .02em;
  margin: 0 0 20px;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .35);
}

.hero-title-sub {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 16px;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .35);
}

.hero-desc {
  font-size: 15px;
  line-height: 1.9;
  margin: 0 0 28px;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .35);
}

.hero-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 18px 40px;
  border-radius: 999px;
  background: #5b3a1e;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  transition: .15s;
}

.hero-cta-btn:hover {
  opacity: .85;
}

/* お問い合わせボタン（青） */
.hero-cta-btn--blue {
  background: #1d2088;
  box-shadow: 0 6px 16px rgba(29, 32, 136, .28);
}

.hero-cta-btn--blue:hover {
  background: #2f36b8;
  opacity: 1;
}

/* ヘッダー画像：画面全幅の背景として表示（左右いっぱいにフィット） */
.hero-main-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 文字を読みやすくするための暗いグラデーション（左が濃く、右へ透明に） */
.hero-main-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    rgba(0, 0, 0, .72) 0%,
    rgba(0, 0, 0, .55) 42%,
    rgba(0, 0, 0, .15) 72%,
    rgba(0, 0, 0, .05) 100%);
  z-index: 1;
  pointer-events: none;
}

/* --------------------------------------------------------------------------
   2-1. hero スライドショー（5秒で2枚を自動切替）
   -------------------------------------------------------------------------- */
.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s ease;
  will-change: opacity;
}

.hero-slide.is-active {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide {
    transition: none;
  }
}

@media (max-width: 900px) {
  .hero-slider {
    height: 260px;
  }
}

@media (max-width: 900px) {
  .hero-content {
    display: block;
    min-height: clamp(360px, 62vw, 520px);
  }
  .hero-main {
    width: 100%;
    padding: 40px 5.3691%;
  }
  .hero-title {
    font-size: 30px;
  }
  /* スマホでも画像は背景のまま。文字が読めるよう上下方向の暗さを強める */
  .hero-main-image::after {
    background: linear-gradient(180deg,
      rgba(0, 0, 0, .35) 0%,
      rgba(0, 0, 0, .65) 60%,
      rgba(0, 0, 0, .75) 100%);
  }
}

/* --------------------------------------------------------------------------
   3. 製品ラインナップ表の詰め調整
   （列数が多い表の文字はみ出し・画像切れの防止）
   -------------------------------------------------------------------------- */
.cv-dense table {
  font-size: 11px;
}

.cv-dense table th,
.cv-dense table td {
  padding: 8px 4px !important;
  white-space: normal !important;
  overflow-wrap: anywhere;
  line-height: 1.5;
}

.cv-dense table thead th {
  font-size: 12px;
}

.cv-dense table td.lineup-table-image {
  padding: 6px 3px !important;
}

.cv-dense table td.lineup-table-image img {
  max-width: 100% !important;
  width: auto !important;
  height: auto !important;
  display: block;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .cv-dense table {
    font-size: 10.5px;
  }
}
