/* ===================================================
   LuckPit LP - css/styles.css
   カラーパレット:
     プライマリ  : #3aa0d5  (ロゴ同色のスカイブルー)
     ダークブルー : #1a6fa0  (ホバー・強調)
     アクセント  : #f07a30  (オレンジ CTA)
     テキスト    : #2c3e50  (濃いめのチャコール)
     サブテキスト : #5a6a7a
     背景白      : #ffffff
     背景薄青    : #f0f8fd
     背景薄グレー: #f7f9fc
     ボーダー    : #dce8f0
   フォント:
     'Meiryo UI','Meiryo','Yu Gothic UI','Yu Gothic',
     'Hiragino Kaku Gothic ProN','Hiragino Sans',sans-serif
=================================================== */

/* ----- リセット & ベース ----- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 17px; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Meiryo UI', 'Meiryo', 'Yu Gothic UI', 'Yu Gothic',
               'Hiragino Kaku Gothic ProN', 'Hiragino Sans',
               'BIZ UDGothic', 'BIZ UDPGothic', sans-serif;
  color: #2c3e50;
  background: #fff;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap;
}

/* ----- CSS変数 ----- */
:root {
  --blue:        #3aa0d5;
  --blue-dark:   #1a6fa0;
  --blue-light:  #e6f4fb;
  --blue-mid:    #cce7f6;
  --orange:      #f07a30;
  --orange-dark: #d4651a;
  --text:        #2c3e50;
  --text-sub:    #5a6a7a;
  --bg-white:    #ffffff;
  --bg-blue:     #f0f8fd;
  --bg-gray:     #f7f9fc;
  --border:      #dce8f0;
  --shadow-sm:   0 2px 8px rgba(58,160,213,0.09);
  --shadow-md:   0 6px 24px rgba(58,160,213,0.14);
  --radius:      10px;
  --radius-lg:   16px;
}

/* ----- レイアウト ----- */
.container { width: min(1100px, 100% - 40px); margin-inline: auto; }

.section { padding-block: 88px; }
.section-white { background: var(--bg-white); }
.section-blue  { background: var(--bg-blue); }
.section-gray  { background: var(--bg-gray); }

/* ===================================================
   セクションヘッダー共通
=================================================== */
.section-header { text-align: center; margin-bottom: 56px; }

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-light);
  border-radius: 100px;
  padding: 4px 16px;
  margin-bottom: 14px;
}

.section-header h2 {
  font-size: clamp(1.6rem, 3.2vw, 2.2rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.5;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.section-desc {
  font-size: 1rem;
  color: var(--text-sub);
  max-width: 660px;
  margin-inline: auto;
  line-height: 1.85;
}

/* ===================================================
   ボタン
=================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: all 0.18s ease;
  cursor: pointer;
  white-space: nowrap;
  border: 2px solid transparent;
  line-height: 1.4;
}

.btn-primary {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
  box-shadow: 0 4px 14px rgba(58,160,213,0.30);
}
.btn-primary:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(58,160,213,0.35);
}

.btn-accent {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
  box-shadow: 0 4px 14px rgba(240,122,48,0.28);
}
.btn-accent:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(240,122,48,0.32);
}

.btn-secondary {
  background: #fff;
  color: var(--blue);
  border-color: var(--blue);
}
.btn-secondary:hover {
  background: var(--blue-light);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--text-sub);
  border-color: var(--border);
}
.btn-outline:hover {
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-2px);
}

.btn-outline-light {
  background: transparent;
  color: rgba(255,255,255,0.9);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
  transform: translateY(-2px);
}

.btn-large { padding: 18px 40px; font-size: 1.05rem; }

/* ===================================================
   ヘッダー
=================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
  transition: box-shadow 0.2s;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }

.logo-icon {
  height: 44px;
  width: auto;
  display: block;
}

.logo-wordmark {
  height: 32px;
  width: auto;
  display: block;
}

.logo-footer .logo-icon,
.logo-footer .logo-wordmark {
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

.logo-footer .logo-icon     { height: 36px; }
.logo-footer .logo-wordmark { height: 26px; }

/* グローバルナビ */
.global-nav ul { display: flex; align-items: center; gap: 28px; }

.global-nav a {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-sub);
  padding: 4px 0;
  position: relative;
  transition: color 0.15s;
}

.global-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0; right: 0;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transition: transform 0.2s;
  border-radius: 2px;
}

.global-nav a:hover { color: var(--blue); }
.global-nav a:hover::after { transform: scaleX(1); }

.nav-cta {
  background: var(--blue) !important;
  color: #fff !important;
  padding: 9px 20px !important;
  border-radius: var(--radius) !important;
  box-shadow: 0 2px 10px rgba(58,160,213,0.28) !important;
  transition: background 0.15s, transform 0.15s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: var(--blue-dark) !important;
  transform: translateY(-1px) !important;
}

/* ハンバーガー */
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; }

.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: all 0.25s;
}

.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* モバイルメニュー */
.mobile-menu { background: #fff; border-top: 1px solid var(--border); }

.mobile-menu a {
  display: block;
  padding: 14px 20px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  border-bottom: 1px solid #f0f4f8;
}
.mobile-menu a:hover { background: var(--bg-blue); color: var(--blue); }

/* ===================================================
   ヒーロー（背景画像スライドショー + 2カラム）
=================================================== */
.hero {
  position: relative;
  padding-block: 96px 80px;
  min-height: 580px;
  overflow: hidden;
  display: flex;
  align-items: stretch;
}

/* ----- 背景スライドショー ----- */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  will-change: opacity;
}

/* スライド1（倉庫・棚卸し）: 0s〜7s 表示 → フェードアウト */
.hero-bg-slide--1 {
  animation: heroFade 16s ease-in-out infinite 0s;
}

/* スライド2（楽器在庫）: 8s〜15s 表示 → フェードアウト */
.hero-bg-slide--2 {
  animation: heroFade 16s ease-in-out infinite 8s;
}

@keyframes heroFade {
  0%          { opacity: 0; }
  6.25%       { opacity: 1; }  /* 1s でフェードイン */
  43.75%      { opacity: 1; }  /* 7s まで表示 */
  50%         { opacity: 0; }  /* 8s でフェードアウト完了 */
  100%        { opacity: 0; }  /* 次のサイクル開始まで非表示 */
}

/* 暗めオーバーレイ（可読性確保） */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    rgba(10, 25, 50, 0.72) 0%,
    rgba(15, 35, 65, 0.60) 55%,
    rgba(10, 25, 50, 0.50) 100%
  );
}

/* ----- 2カラムグリッド ----- */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
}

/* ----- 左：テキスト ----- */
.hero-content { position: relative; }

.hero-brand {
  font-size: clamp(1.1rem, 2.2vw, 1.35rem);
  font-weight: 700;
  letter-spacing: 0.3em;
  color: #fff;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.7), 0 1px 6px rgba(0,0,0,0.6);
  border-bottom: 2px solid rgba(125,211,248,0.6);
  padding-bottom: 14px;
  display: inline-block;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.95);
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 100px;
  padding: 5px 14px;
  margin-bottom: 24px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.hero-heading {
  font-size: clamp(2rem, 4.8vw, 3.4rem);
  font-weight: 900;
  line-height: 1.25;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

.hero-heading .highlight { color: #7dd3f8; }

.hero-sub {
  font-size: clamp(0.95rem, 1.7vw, 1.075rem);
  color: rgba(255,255,255,0.88);
  line-height: 1.9;
  margin-bottom: 36px;
  text-shadow: 0 1px 6px rgba(0,0,0,0.3);
  text-wrap: pretty;
}

.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 44px; }

/* CTA ボタン（ヒーロー用追加バリアント） */
.btn-hero-sub {
  background: rgba(255,255,255,0.18);
  color: #fff;
  border: 2px solid rgba(255,255,255,0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.btn-hero-sub:hover {
  background: rgba(255,255,255,0.28);
  border-color: #fff;
  transform: translateY(-2px);
}

/* 実績バッジ（背景暗め・フロストグラス） */
.hero-badges { display: flex; flex-wrap: wrap; gap: 9px; }

.badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: var(--radius);
  padding: 9px 14px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.badge-value {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.92);
  font-weight: 600;
  line-height: 1.3;
}

.badge-value strong {
  color: #ffa040;
  font-size: 0.92rem;
  font-weight: 800;
}

/* ----- 右：システム画面モックアップ ----- */
/* Device image : images/assets/original01.jpg */
.hero-device {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-device-frame {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow:
    0 8px 32px rgba(0,0,0,0.55),
    0 2px 8px rgba(0,0,0,0.35),
    0 0 0 1px rgba(255,255,255,0.10);
  max-width: 460px;
  width: 100%;
  /* 上部を少し傾けて奥行き感を演出 */
  transform: perspective(900px) rotateY(-6deg) rotateX(2deg);
  transition: transform 0.4s ease;
}

.hero-device-frame:hover {
  transform: perspective(900px) rotateY(-2deg) rotateX(1deg);
}

.hero-device-frame img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.hero-device-caption {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  padding: 10px 16px;
  background: linear-gradient(to top, rgba(10,25,50,0.85) 0%, transparent 100%);
  font-size: 0.75rem;
  color: rgba(255,255,255,0.82);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-align: right;
}

/* ===================================================
   LuckPitとは
=================================================== */
.about-body {
  max-width: 740px;
  margin-inline: auto;
  text-align: center;
  margin-bottom: 60px;
}

.about-body p { font-size: 1.025rem; color: var(--text); line-height: 1.95; margin-bottom: 14px; }
.about-body strong { color: var(--blue-dark); font-weight: 700; }

.about-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 52px;
  position: relative;
}

.about-points::before,
.about-points::after {
  content: '→';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: var(--blue);
  font-weight: 700;
  z-index: 1;
  pointer-events: none;
}

.about-points::before { left: calc(33.33% - 10px); }
.about-points::after  { left: calc(66.66% - 10px); }

.point-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.2s;
}

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

.point-icon {
  width: 48px; height: 48px;
  background: var(--blue-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1rem;
  font-weight: 900;
  color: var(--blue);
}

.point-card h3 { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 10px; line-height: 1.5; }
.point-card p  { font-size: 0.9rem; color: var(--text-sub); line-height: 1.75; }

.case-note {
  background: linear-gradient(135deg, var(--blue-light), #f0f8fd);
  border: 1px solid var(--blue-mid);
  border-left: 4px solid var(--blue);
  border-radius: var(--radius);
  padding: 24px 28px;
  max-width: 800px;
  margin-inline: auto;
}

.case-note-label {
  font-size: 0.72rem; font-weight: 700;
  color: var(--blue); letter-spacing: 0.12em;
  text-transform: uppercase; margin-bottom: 8px;
}

.case-note p { font-size: 0.975rem; color: var(--text); line-height: 1.8; }
.case-note strong { color: var(--blue-dark); }

/* 画像付き case-note */
/* Case photo : images/assets/original03.jpeg */
.case-note-media {
  display: flex;
  gap: 28px;
  align-items: center;
  padding: 0;
  overflow: hidden;
}

.case-note-img-wrap {
  flex-shrink: 0;
  width: 220px;
  height: 148px;
  border-radius: var(--radius) 0 0 var(--radius);
  overflow: hidden;
}

.case-note-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.case-note-body {
  padding: 20px 24px 20px 0;
  flex: 1;
}

/* ===================================================
   課題提起
=================================================== */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 48px;
}

.problem-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.problem-card:hover {
  border-color: var(--blue);
  box-shadow: 0 4px 16px rgba(58,160,213,0.15);
  transform: translateY(-2px);
}

.problem-icon { font-size: 1.35rem; flex-shrink: 0; line-height: 1; margin-top: 1px; }
.problem-card p { font-size: 0.925rem; color: var(--text); line-height: 1.6; font-weight: 500; }
.problem-cta { text-align: center; }
.problem-cta p { font-size: 0.975rem; color: var(--text-sub); margin-bottom: 20px; }

/* ===================================================
   解決コンセプト - 明るいグラデーション帯
=================================================== */
.concept-section {
  background: linear-gradient(160deg, #e8f5fd 0%, #f0f8fd 100%);
  padding-block: 88px;
}

.concept-body {
  max-width: 840px;
  margin-inline: auto;
  text-align: center;
  margin-bottom: 56px;
}

.concept-body p { font-size: 1.05rem; color: var(--text); line-height: 1.95; margin-bottom: 14px; }
.concept-body strong { color: var(--blue-dark); }

.visibility-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.visibility-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 18px;
  border-top: 3px solid var(--blue);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
}

.visibility-item:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.visibility-item h3 { font-size: 0.975rem; font-weight: 700; color: var(--blue-dark); margin-bottom: 8px; }
.visibility-item p  { font-size: 0.875rem; color: var(--text-sub); line-height: 1.65; }

/* ===================================================
   OMS・WMS一体化 / 在庫なし対応
=================================================== */
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
  margin-bottom: 52px;
}

.split-layout.reverse { direction: rtl; }
.split-layout.reverse > * { direction: ltr; }

.split-text p { font-size: 1rem; color: var(--text); line-height: 1.95; margin-bottom: 16px; }
.split-text strong { color: var(--blue-dark); }

.check-list { display: flex; flex-direction: column; gap: 13px; }

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text);
  line-height: 1.65;
}

.check-list li::before {
  content: '';
  width: 20px; height: 20px; min-width: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Ccircle cx='10' cy='10' r='10' fill='%233aa0d5'/%3E%3Cpath d='M5.5 10.5l3 2.5 6-6' stroke='white' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  margin-top: 1px;
}

.flow-diagram {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
  background: var(--bg-blue);
  border: 1px solid var(--blue-mid);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
}

.flow-step {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
}

.flow-step.accent { background: var(--blue); color: #fff; border-color: var(--blue); }
.flow-arrow { color: var(--blue); font-size: 1.1rem; font-weight: 700; }

.stockout-flow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  max-width: 460px;
  margin-inline: auto;
}

.stockout-step {
  background: #fff;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  box-shadow: var(--shadow-sm);
}

.stockout-step.accent { background: var(--blue-light); border-color: var(--blue); }

.step-num {
  width: 30px; height: 30px; min-width: 30px;
  background: var(--blue);
  color: #fff;
  font-weight: 700;
  font-size: 0.82rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-label { font-size: 0.925rem; font-weight: 600; color: var(--text); line-height: 1.4; }

/* ===================================================
   機能一覧
=================================================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 20px;
  border-top: 3px solid var(--blue);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
}

.feature-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.feature-card h3 { font-size: 0.975rem; font-weight: 700; color: var(--text); margin-bottom: 9px; }
.feature-card p  { font-size: 0.875rem; color: var(--text-sub); line-height: 1.7; }

/* ===================================================
   配送便自動設定・検品機能 ハイライト
=================================================== */
.feature-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.feature-pair-item {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

.feature-pair-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.feature-pair-icon { font-size: 1.7rem; line-height: 1; }

.feature-pair-item h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.4;
}

.feature-pair-lead {
  font-size: 1rem;
  font-weight: 700;
  color: var(--blue-dark);
  line-height: 1.65;
  margin-bottom: 10px;
}

.feature-pair-item > p:not(.feature-pair-lead) {
  font-size: 0.925rem;
  color: var(--text);
  line-height: 1.85;
  margin-bottom: 18px;
}

.feature-pair-item .check-list { margin-top: 0; }

/* ===================================================
   導入効果
=================================================== */
.results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 36px;
}

.result-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 18px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
}

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

.result-card-wide {
  grid-column: span 2;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.result-value {
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1.1;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.result-unit  { font-size: 1rem; color: var(--orange); }
.result-arrow { font-size: 1.1rem; color: #aab4c8; }

.result-label   { font-size: 0.875rem; font-weight: 700; color: var(--text); margin-bottom: 6px; line-height: 1.45; }
.result-label-lg{ font-size: 1rem; font-weight: 700; color: var(--text); }
.result-desc    { font-size: 0.825rem; color: var(--text-sub); line-height: 1.65; }

.results-note {
  background: var(--blue-light);
  border: 1px solid var(--blue-mid);
  border-left: 4px solid var(--blue);
  border-radius: var(--radius);
  padding: 20px 24px;
  font-size: 0.925rem;
  color: var(--text);
  line-height: 1.85;
}

.results-note strong { color: var(--blue-dark); }

/* ===================================================
   現状分析 - 明るいブルーグラデーション帯
=================================================== */
.analysis-section {
  background: linear-gradient(135deg, #3aa0d5 0%, #1a6fa0 100%);
  padding-block: 88px;
}

.analysis-section .section-label { background: rgba(255,255,255,0.2); color: #fff; }
.analysis-section .section-header h2 { color: #fff; }

.analysis-body {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
  margin-bottom: 52px;
}

.analysis-body p { font-size: 1rem; color: rgba(255,255,255,0.9); line-height: 1.95; }

.analysis-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.analysis-step {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  transition: background 0.2s;
}

.analysis-step:hover { background: rgba(255,255,255,0.22); }
.analysis-step .step-icon { font-size: 2rem; margin-bottom: 12px; }
.analysis-step h3 { font-size: 0.975rem; font-weight: 700; color: rgba(255,255,255,0.95); margin-bottom: 8px; }
.analysis-step p  { font-size: 0.875rem; color: rgba(255,255,255,0.8); line-height: 1.65; }

.analysis-price {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
  max-width: 340px;
  margin-inline: auto;
  margin-bottom: 36px;
}

.price-label { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; color: rgba(255,255,255,0.7); text-transform: uppercase; margin-bottom: 8px; }
.price-value { font-size: 2rem; font-weight: 900; color: #fff; line-height: 1.2; letter-spacing: -0.02em; }
.price-unit  { font-size: 0.875rem; font-weight: 400; color: rgba(255,255,255,0.8); }
.price-note  { font-size: 0.78rem; color: rgba(255,255,255,0.65); margin-top: 8px; }

.analysis-cta { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; }

/* ===================================================
   相談すべき課題
=================================================== */
.consult-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.consult-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.consult-card:hover {
  border-color: var(--blue);
  box-shadow: 0 3px 14px rgba(58,160,213,0.15);
  transform: translateY(-2px);
}

.consult-card::before { content: '→'; color: var(--orange); font-weight: 800; font-size: 1.05rem; flex-shrink: 0; }
.consult-card p { font-size: 0.925rem; color: var(--text); font-weight: 500; line-height: 1.55; }

/* ===================================================
   LuckPitシリーズ
=================================================== */
.series-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.series-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px 18px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
}

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

.series-core    { border-top: 4px solid var(--blue); }
.series-wms     { border-top: 4px solid #2980b9; }
.series-connect { border-top: 4px solid #5dade2; }
.series-nexus   { border-top: 4px solid #aab4c8; opacity: 0.82; }

.series-badge {
  display: inline-block;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  background: var(--blue-light); color: var(--blue);
  border-radius: 4px; padding: 3px 8px; margin-bottom: 10px;
}

.series-badge-upcoming { background: #f0f2f5; color: #9aaab8; }
.series-card h3 { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.series-desc    { font-size: 0.875rem; color: var(--text-sub); line-height: 1.65; margin-bottom: 14px; }

.series-list { display: flex; flex-direction: column; gap: 5px; }

.series-list li {
  font-size: 0.78rem; color: var(--text-sub);
  padding-left: 12px; position: relative; line-height: 1.5;
}

.series-list li::before {
  content: '·';
  position: absolute; left: 0;
  color: var(--blue); font-size: 1.3rem; line-height: 0.9; top: 2px;
}

/* ===================================================
   比較表
=================================================== */
.comparison-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 14px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.comparison-table {
  width: 100%; border-collapse: collapse;
  font-size: 0.85rem; min-width: 600px;
}

.comparison-table th,
.comparison-table td { padding: 13px 16px; text-align: center; border-bottom: 1px solid var(--border); }

.comparison-table th {
  background: #3a5068; color: #fff;
  font-size: 0.82rem; font-weight: 700; white-space: nowrap;
}

.comparison-table th:first-child { text-align: left; background: #2c3e50; }
.th-luckpit { background: var(--blue) !important; }

.comparison-table td:first-child { text-align: left; font-weight: 500; color: var(--text); background: #fafcfe; }
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tr:nth-child(even) td { background: #f5fafd; }
.comparison-table tr:nth-child(even) td:first-child { background: #f5fafd; }

.td-yes     { color: var(--blue); font-weight: 700; font-size: 1rem; }
.td-no      { color: #cdd5de; }
.td-partial { color: var(--orange); }

.comparison-note { font-size: 0.75rem; color: #9aaab8; text-align: right; }

/* ===================================================
   導入の流れ
=================================================== */
.process-list {
  max-width: 700px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
}

.process-item {
  display: flex; gap: 22px;
  padding-bottom: 30px; position: relative;
}

.process-item:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 26px; top: 52px; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--blue-mid), transparent);
}

.process-num {
  width: 52px; height: 52px; min-width: 52px;
  background: var(--blue); color: #fff;
  font-weight: 900; font-size: 0.95rem; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 3px 12px rgba(58,160,213,0.28);
  position: relative; z-index: 1;
}

.process-content { padding-top: 12px; flex: 1; }

.process-content h3 {
  font-size: 0.975rem; font-weight: 700; color: var(--text);
  margin-bottom: 5px;
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
}

.price-tag {
  font-size: 0.75rem; font-weight: 700;
  background: var(--orange); color: #fff;
  padding: 3px 10px; border-radius: 100px;
}

.process-content p { font-size: 0.875rem; color: var(--text-sub); line-height: 1.75; }

/* ===================================================
   お問い合わせフォーム
=================================================== */
.contact-note { font-size: 0.925rem; color: var(--blue-dark); font-weight: 600; line-height: 1.85; }

.contact-form {
  max-width: 740px;
  margin-inline: auto;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px 44px;
  box-shadow: var(--shadow-md);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }

.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.form-row .form-group { margin-bottom: 0; }

.form-group label { font-size: 0.85rem; font-weight: 700; color: var(--text); }
.form-group.required label::after { content: ' *'; color: var(--orange); }

.form-group input:not([type="checkbox"]),
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 0.9rem;
  font-family: inherit;
  background: #fafcfe;
  color: var(--text);
  transition: border-color 0.15s, box-shadow 0.15s;
  line-height: 1.5;
  -webkit-appearance: none;
  appearance: none;
}

.form-group input:not([type="checkbox"]):focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(58,160,213,0.12);
  background: #fff;
}

.form-group textarea { resize: vertical; }

.checkbox-group { display: flex; flex-wrap: wrap; gap: 10px; padding-top: 4px; }

.checkbox-label {
  display: flex; align-items: center; gap: 7px;
  font-size: 0.85rem; color: var(--text); cursor: pointer; user-select: none;
}

.checkbox-label input[type="checkbox"] {
  width: 17px; height: 17px; min-width: 17px;
  border: 1.5px solid var(--border); border-radius: 3px;
  padding: 0; accent-color: var(--blue);
}

.form-privacy { border-top: 1px solid var(--border); padding-top: 20px; margin-bottom: 24px; }
.form-privacy a { color: var(--blue); text-decoration: underline; }
.form-submit { text-align: center; }

/* ===================================================
   会社・開発背景
=================================================== */
.company-section {
  background: linear-gradient(135deg, #f0f8fd 0%, #e8f4fb 100%);
}
.section-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.35em;
  color: var(--blue);
  margin-bottom: 10px;
  text-transform: uppercase;
}

/* 開発背景カード */
.origin-card {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  background: #fff;
  border-radius: 16px;
  padding: 36px 40px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  border-left: 5px solid var(--blue);
  margin-bottom: 28px;
}
.origin-card-icon {
  font-size: 2rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}
.origin-card-body h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--blue-dark);
  margin-bottom: 12px;
}
.origin-card-body p {
  color: var(--text);
  line-height: 1.9;
}

/* 事業内容 3カード */
.company-biz-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}
.company-biz-card {
  background: #fff;
  border-radius: 14px;
  padding: 28px 28px 32px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.07);
}
.biz-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--blue);
}
.biz-icon { font-size: 1.4rem; line-height: 1; }
.company-biz-card h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--blue-dark);
}
.company-biz-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.company-biz-card ul li {
  font-size: 0.86rem;
  color: var(--text-sub);
  padding: 6px 0 6px 16px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  position: relative;
}
.company-biz-card ul li:last-child { border-bottom: none; }
.company-biz-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  background: var(--blue);
  border-radius: 50%;
}

/* 会社概要 横長カード */
.company-info-card {
  background: #fff;
  border-radius: 14px;
  padding: 32px 40px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.07);
  margin-bottom: 36px;
}
.company-info-card h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--blue-dark);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--blue);
}
.company-info-dl {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.company-info-row { display: flex; flex-direction: column; gap: 6px; }
.company-info-row dt {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-sub);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.company-info-row dd {
  font-size: 0.95rem;
  color: var(--text);
  margin: 0;
  line-height: 1.6;
}
.company-info-row dd a { color: var(--blue); text-decoration: none; }
.company-info-row dd a:hover { text-decoration: underline; }

/* 強調コピー */
.company-emphasis {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%);
  border-radius: 14px;
  padding: 36px 48px;
  text-align: center;
}
.company-emphasis p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.7;
  text-shadow: 0 1px 6px rgba(0,0,0,0.2);
}

/* ===================================================
   FAQ
=================================================== */
.faq-list {
  max-width: 740px; margin-inline: auto;
  display: flex; flex-direction: column; gap: 8px;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-toggle {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px 22px;
  text-align: left;
  font-size: 0.9rem; font-weight: 600; color: var(--text);
  cursor: pointer; transition: background 0.15s; line-height: 1.5;
}

.faq-toggle:hover { background: var(--bg-blue); }

.faq-icon {
  width: 22px; height: 22px; min-width: 22px;
  border-radius: 50%;
  background: var(--blue-light);
  border: 1.5px solid var(--blue);
  position: relative; flex-shrink: 0;
  transition: background 0.15s;
}

.faq-toggle[aria-expanded="true"] .faq-icon { background: var(--blue); }

.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 1px;
}

.faq-icon::before { width: 8px; height: 2px; background: var(--blue); }
.faq-icon::after  { width: 2px; height: 8px; background: var(--blue); transition: transform 0.2s; }

.faq-toggle[aria-expanded="true"] .faq-icon::before { background: #fff; }
.faq-toggle[aria-expanded="true"] .faq-icon::after  { background: #fff; transform: translate(-50%, -50%) rotate(90deg); }

.faq-a {
  padding: 14px 22px 18px;
  font-size: 0.925rem; color: var(--text-sub); line-height: 1.85;
  border-top: 1px solid var(--border);
}

.faq-a strong { color: var(--text); }

/* ===================================================
   最終CTA
=================================================== */
.section-cta {
  background: linear-gradient(135deg, #3aa0d5 0%, #1a6fa0 100%);
  color: #fff; text-align: center; padding-block: 80px;
}

#final-cta h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 900; color: #fff; margin-bottom: 18px;
  line-height: 1.45; letter-spacing: -0.01em;
}

.cta-desc { font-size: 0.975rem; color: rgba(255,255,255,0.88); line-height: 1.9; margin-bottom: 36px; }

.final-cta-buttons { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }

/* ===================================================
   フッター
=================================================== */
.site-footer { background: #1e2f42; color: rgba(255,255,255,0.72); padding-block: 52px 22px; }

.footer-inner {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 40px; margin-bottom: 36px; flex-wrap: wrap;
}

.footer-tagline { margin-top: 8px; font-size: 0.78rem; color: rgba(255,255,255,0.45); }

.footer-nav ul { display: flex; flex-wrap: wrap; gap: 10px 22px; }

.footer-nav a { font-size: 0.82rem; color: rgba(255,255,255,0.58); transition: color 0.15s; }
.footer-nav a:hover { color: #fff; }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1);
  flex-wrap: wrap; gap: 10px;
}

.copyright { font-size: 0.77rem; color: rgba(255,255,255,0.36); }

.footer-links { display: flex; gap: 16px; }

.footer-links a { font-size: 0.77rem; color: rgba(255,255,255,0.36); transition: color 0.15s; }
.footer-links a:hover { color: rgba(255,255,255,0.75); }

/* ===================================================
   ユーティリティ
=================================================== */
.pc-only { display: inline; }

/* ===================================================
   レスポンシブ
=================================================== */
@media (max-width: 1024px) {
  .series-grid  { grid-template-columns: repeat(2, 1fr); }
  .results-grid { grid-template-columns: repeat(2, 1fr); }
  .result-card-wide { grid-column: span 1; text-align: center; }
  .company-info-dl { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { font-size: 15px; }

  .section { padding-block: 60px; }
  .concept-section, .analysis-section { padding-block: 60px; }
  .company-biz-grid { grid-template-columns: 1fr; gap: 16px; }
  .origin-card { flex-direction: column; gap: 16px; padding: 24px 20px; }
  .company-biz-card { padding: 24px 20px; }
  .company-info-card { padding: 24px 20px; }
  .company-emphasis { padding: 28px 24px; }

  /* ヘッダー */
  .global-nav { display: none; }
  .hamburger  { display: flex; }
  .logo-icon     { height: 34px; }
  .logo-wordmark { height: 24px; }
  .header-inner { height: 60px; }

  /* ヒーロー：縦1カラム・オーバーレイ強化 */
  .hero { padding-block: 52px 44px; min-height: 0; }
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(10,25,50,0.80) 0%,
      rgba(10,25,50,0.72) 100%
    );
  }
  /* スマホ：被写体（人物・棚）が右側に寄っているためleftよりに */
  .hero-bg-slide--1 { background-position: 30% 30%; }
  .hero-bg-slide--2 { background-position: center center; }

  .hero-heading { font-size: 1.85rem; line-height: 1.3; }
  .hero-sub { font-size: 0.9rem; }
  .hero-cta { flex-direction: column; gap: 10px; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .hero-badges { flex-direction: column; gap: 8px; }
  .badge { width: 100%; }

  /* デバイスモックアップはスマホでは非表示 */
  .hero-device { display: none; }

  /* case-note 画像付きを縦積みに */
  .case-note-media { flex-direction: column; gap: 0; }
  .case-note-img-wrap { width: 100%; height: 160px; border-radius: var(--radius) var(--radius) 0 0; }
  .case-note-body { padding: 16px 20px; }

  /* セクションヘッダー */
  .section-header { margin-bottom: 32px; }
  .section-header h2 { font-size: 1.3rem; }

  /* LuckPitとは */
  .about-points { grid-template-columns: 1fr; gap: 12px; }
  .about-points::before, .about-points::after { display: none; }

  /* 課題 */
  .problem-grid { grid-template-columns: 1fr; }

  /* 在庫可視化 */
  .visibility-grid { grid-template-columns: 1fr; }

  /* OMS/WMS・在庫なし */
  .split-layout { grid-template-columns: 1fr; gap: 24px; }
  .split-layout.reverse { direction: ltr; }
  .flow-diagram { flex-direction: column; }
  .flow-arrow { transform: rotate(90deg); display: inline-block; }

  /* 機能 */
  .features-grid { grid-template-columns: 1fr; }

  /* 配送便・検品ハイライト */
  .feature-pair { grid-template-columns: 1fr; }
  .feature-pair-item { padding: 28px 22px; }

  /* 効果 */
  .results-grid { grid-template-columns: 1fr; }
  .result-card-wide { grid-column: auto; text-align: center; }

  /* 現状分析 */
  .analysis-steps { grid-template-columns: 1fr; gap: 12px; }
  .analysis-cta { flex-direction: column; }
  .analysis-cta .btn { width: 100%; justify-content: center; }

  /* 相談 */
  .consult-grid { grid-template-columns: 1fr; }

  /* シリーズ */
  .series-grid { grid-template-columns: 1fr; }

  /* フォーム */
  .contact-form { padding: 28px 18px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }

  /* フッター */
  .footer-inner { flex-direction: column; gap: 20px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  /* 最終CTA */
  .final-cta-buttons { flex-direction: column; }
  .final-cta-buttons .btn { width: 100%; justify-content: center; }

  .pc-only { display: none; }
}

@media (max-width: 480px) {
  .section { padding-block: 44px; }
  .concept-section, .analysis-section { padding-block: 44px; }
  .hero { padding-block: 40px 36px; }
  .hero-heading { font-size: 1.55rem; }
  .contact-form { padding: 20px 14px; }
  .btn-large { padding: 15px 24px; font-size: 0.925rem; }

  /* タップ対象を44px以上に */
  .btn { min-height: 44px; }
  .faq-toggle { min-height: 48px; }
  .mobile-menu a { min-height: 44px; display: flex; align-items: center; }
}

/* ===================================================
   アクセシビリティ
=================================================== */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ===================================================
   印刷
=================================================== */
@media print {
  .site-header, .hamburger, .mobile-menu,
  .hero-cta, .analysis-cta, .final-cta-buttons { display: none !important; }
  body { font-size: 11pt; color: #000; }
  .section, .concept-section, .analysis-section { padding-block: 18pt; }
}

/* ===================================================
   多品種少量・大型商品（向いている企業）
=================================================== */
.variety-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.variety-catch {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--blue-dark);
  line-height: 1.65;
  margin-bottom: 20px;
  padding: 16px 22px;
  border-left: 4px solid var(--blue);
  background: var(--bg-blue);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.variety-body p {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.9;
  margin-bottom: 12px;
}

.variety-body p:last-child { margin-bottom: 0; }

.variety-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-content: start;
}

.variety-tag {
  background: #fff;
  border: 2px solid var(--blue-mid);
  color: var(--blue-dark);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 100px;
  line-height: 1;
}

/* ===================================================
   対応領域・未対応機能
=================================================== */
.scope-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 24px;
}

.scope-card {
  border-radius: var(--radius-lg);
  padding: 28px 26px;
}

.scope-card.scope-supported {
  background: #fff;
  border: 2px solid var(--blue-mid);
}

.scope-card.scope-unsupported {
  background: #f7f7f7;
  border: 2px solid #e0e0e0;
}

.scope-card-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.scope-card.scope-supported .scope-card-title { color: var(--blue-dark); }
.scope-card.scope-unsupported .scope-card-title { color: #777; }

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

.scope-list li {
  font-size: 0.9rem;
  padding: 7px 0 7px 22px;
  position: relative;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  line-height: 1.5;
}

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

.scope-card.scope-supported .scope-list li { color: var(--text); }
.scope-card.scope-supported .scope-list li::before {
  content: '✓';
  color: var(--blue);
  font-weight: 700;
  font-size: 0.85rem;
  position: absolute;
  left: 0;
}

.scope-card.scope-unsupported .scope-list li { color: #888; }
.scope-card.scope-unsupported .scope-list li::before {
  content: '–';
  color: #bbb;
  position: absolute;
  left: 2px;
}

.scope-note {
  background: var(--bg-gray);
  border-radius: var(--radius);
  padding: 16px 22px;
  font-size: 0.875rem;
  color: var(--text-sub);
  line-height: 1.8;
  text-align: center;
}

/* ===================================================
   料金プラン
=================================================== */
.pricing-intro {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.9;
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
  margin-bottom: 48px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: stretch;
  margin-bottom: 32px;
}

.pricing-card {
  background: #fff;
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 22px 24px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.pricing-card.pricing-recommended {
  border-color: var(--blue);
  box-shadow: var(--shadow-md);
}

.pricing-rec-badge {
  background: var(--orange);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 100px;
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  letter-spacing: 0.05em;
}

.pricing-plan-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}

.pricing-price-area {
  margin-bottom: 10px;
}

.pricing-price {
  font-size: 1.65rem;
  font-weight: 900;
  color: var(--blue-dark);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.pricing-price-unit {
  font-size: 0.825rem;
  font-weight: 400;
  color: var(--text-sub);
}

.pricing-price-custom {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-sub);
}

.pricing-copy {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--blue-dark);
  line-height: 1.55;
  margin: 12px 0;
}

.pricing-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 14px 0;
}

.pricing-section-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-sub);
  margin-bottom: 6px;
}

.pricing-target-list,
.pricing-features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
}

.pricing-target-list li {
  font-size: 0.8rem;
  color: var(--text-sub);
  padding: 3px 0 3px 12px;
  position: relative;
  line-height: 1.5;
}

.pricing-target-list li::before {
  content: '·';
  color: var(--blue);
  font-weight: 700;
  position: absolute;
  left: 3px;
}

.pricing-features-list li {
  font-size: 0.825rem;
  color: var(--text);
  padding: 4px 0 4px 18px;
  position: relative;
  line-height: 1.45;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}

.pricing-features-list li:last-child { border-bottom: none; }

.pricing-features-list li::before {
  content: '✓';
  color: var(--blue);
  font-weight: 700;
  font-size: 0.75rem;
  position: absolute;
  left: 0;
  top: 5px;
}

.pricing-card-cta {
  margin-top: auto;
  padding-top: 20px;
  text-align: center;
}

.pricing-note-box {
  background: var(--bg-blue);
  border: 1px solid var(--blue-mid);
  border-radius: var(--radius);
  padding: 20px 28px;
  font-size: 0.875rem;
  color: var(--text-sub);
  line-height: 1.85;
}

.pricing-note-box strong { color: var(--text); }

/* ===================================================
   クラウド・オンプレミス
=================================================== */
.deploy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.deploy-card {
  background: #fff;
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.deploy-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.deploy-icon { font-size: 1.7rem; line-height: 1; }

.deploy-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
}

.deploy-badge {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  letter-spacing: 0.05em;
  margin-left: auto;
  flex-shrink: 0;
}

.deploy-badge.cloud { background: var(--blue-mid); color: var(--blue-dark); }
.deploy-badge.onprem { background: #e8f5e9; color: #2e7d32; }

.deploy-section-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-sub);
  margin-bottom: 6px;
  margin-top: 16px;
}

.deploy-list {
  list-style: none;
  padding: 0;
  margin: 0 0 4px;
}

.deploy-list li {
  font-size: 0.9rem;
  color: var(--text);
  padding: 4px 0 4px 16px;
  position: relative;
  line-height: 1.5;
}

.deploy-list li::before {
  content: '·';
  color: var(--blue);
  font-weight: 700;
  position: absolute;
  left: 5px;
}

.deploy-note {
  font-size: 0.825rem;
  color: var(--text-sub);
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  line-height: 1.75;
}

/* 機能ラベル（今後予定） */
.feature-card.coming-soon {
  opacity: 0.8;
}

.coming-soon-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 100px;
  background: #fff3e0;
  color: #e65100;
  letter-spacing: 0.05em;
  margin-left: 6px;
  vertical-align: middle;
}

/* レスポンシブ追加 */
@media (max-width: 1024px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .variety-layout { grid-template-columns: 1fr; gap: 28px; }
  .scope-grid     { grid-template-columns: 1fr; }
  .pricing-grid   { grid-template-columns: 1fr; }
  .deploy-grid    { grid-template-columns: 1fr; }
}
