/* ===== FV（ファーストビュー） ===== */
.fv {
  position: relative;
  width: 100%;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  box-sizing: border-box;
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: #fff;
  text-align: center;
}

/* 中央コンテンツ */
.fv-content {
  max-width: 800px;
  z-index: 2;
}

/* 上のラベル */
.fv-label {
  font-size: 14px;
  opacity: 0.8;
  margin-bottom: 10px;
}

/* メインタイトル */
.fv h1 {
  font-size: 32px;
  line-height: 1.4;
  margin-bottom: 15px;
  font-weight: bold;
}

/* サブコピー */
.fv-sub {
  font-size: 16px;
  margin-bottom: 20px;
  opacity: 0.9;
}

/* 特徴バッジ */
.fv-features {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 25px;
}

.fv-features span {
  background: rgba(255,255,255,0.15);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 13px;
}

/* CTAボタン */
.fv-btn {
  display: inline-block;
  background: #22c55e;
  color: #fff;
  padding: 14px 28px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(34,197,94,0.4);
}

.fv-btn:hover {
  background: #16a34a;
  transform: translateY(-2px);
}

/* ===== スマホ対応 ===== */
@media (max-width: 768px) {
  .fv {
    min-height: 360px;
    padding: 30px 15px;
  }

  .fv h1 {
    font-size: 24px;
  }

  .fv-sub {
    font-size: 14px;
  }

  .fv-btn {
    width: 100%;
    padding: 14px;
  }
}