/**
 * 鈴和 - FV（メインビジュアル）
 * テストサイト準拠: PC 730px / SP 560px
 */

body.suzuwa-front .main-visual {
  position: relative;
  overflow: hidden;
  height: var(--suzuwa-fv-h);
}

body.suzuwa-front .suzuwa-hero-fv {
  position: relative;
  height: var(--suzuwa-fv-h);
  min-height: var(--suzuwa-fv-h);
  max-height: var(--suzuwa-fv-h);
  overflow: hidden;
  background: var(--color-light);
}

.suzuwa-hero-fv__slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.suzuwa-hero-fv__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.4s ease;
}

.suzuwa-hero-fv__slide.is-active {
  opacity: 1;
  z-index: 1;
}

.suzuwa-hero-fv__img,
.suzuwa-hero-fv__placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.suzuwa-hero-fv__placeholder {
  background: linear-gradient(160deg, #f5f0e8 0%, #e8dfd0 100%);
}

/* 左側の白みグラデーション */
.suzuwa-hero-fv__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.65) 0%,
    rgba(255, 255, 255, 0.25) 10%,
    rgba(255, 255, 255, 0.05) 22%,
    transparent 40%
  );
}

/* 縦書きキャッチコピー */
.suzuwa-hero-fv__catchcopy {
  position: absolute;
  top: 50%;
  left: clamp(32px, 5vw, 72px);
  z-index: 3;
  transform: translateY(-50%);
  margin: 0;
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-start;
  gap: 0.35em;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-family: var(--font-mincho);
  font-weight: 400;
  color: rgba(58, 42, 26, 0.88);
  letter-spacing: 0.22em;
  line-height: 2;
  text-shadow: 0 0 24px rgba(255, 255, 255, 0.6);
}

.suzuwa-hero-fv__catchcopy-line {
  display: block;
  font-size: clamp(15px, 1.75vw, 16px);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .suzuwa-hero-fv__catchcopy {
    left: 20px;
    letter-spacing: 0.18em;
  }

  .suzuwa-hero-fv__catchcopy-line {
    font-size: 0.92rem;
  }
}
