/* ファーストビュー */
.fv {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-top: 60px;
}

/* スライド比率 */
.fv-slides {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
}

/* スライド画像 */
.fv-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.is-active {
  opacity: 1;
}

/* ===== SPテキスト ===== */
.fv-text {
  position: absolute;
  left: 0;
  bottom: 12%;
  /* 少し上げてバランス調整 */
  width: 100%;
  padding-left: 1.6rem;
  color: #fff;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
  z-index: 2;
}

.fv-text h1 {
  font-size: 3.9rem;
  /* SP：1.5倍 */
  font-weight: 600;
  line-height: 1.25;
  /* 行間を少し詰める */
  letter-spacing: 0.05em;
  text-align: left;
  text-shadow: 0 3px 8px rgba(0, 0, 0, 0.35);
}

/* ===== PC ===== */
@media (min-width: 768px) {
  .sp-only {
    display: none;
  }

  .pc-only {
    display: block;
  }

  .fv-slides {
    aspect-ratio: 16 / 7;
  }

  .fv-text {
    bottom: 12%;
    /* PC：そのまま */
    padding-left: 4.5rem;
  }

  .fv-text h1 {
    font-size: 8.4rem;
    /* PC：そのまま */
    line-height: 1.15;
    letter-spacing: 0.03em;
  }
}