@charset "utf-8";

.p-fv {
  position: relative;
  width: 100%;
  height: 460px;

  @media (width < 768px) {
    height: 260px;
  }

  .l-inner {
    max-width: 1290px;
    height: 100%;
    display: flex;
    align-items: center;
  }

  .c-heading {
    position: relative;
    z-index: 1;

    @media (width < 768px) {
      margin-top: 24px;
    }
  }
}

.p-fv__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.p-fv__breadcrumb {
  position: absolute;
  top: 90px;
  right: 0;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 44px;

  @media (width < 1120px) {
    top: 64px;
  }

  @media (width < 768px) {
    padding: 0 10px;
  }

  div {
    position: relative;
  }

  div:not(:last-of-type)::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -26px;
    width: 7px;
    height: 8px;
    background: var(--color-white);
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
  }

  p {
    color: var(--color-white);
    font-weight: 300;
    font-size: 13px;
    letter-spacing: 0.06em;
    text-shadow: 1px 1px 3px var(--color-blue);
  }

  a:hover {
    opacity: 0.7;
  }
}

.p-fv__bg-text {
  position: absolute;
  bottom: 0;
  right: 0;
  font-family: var(--font-noto-sans);
  font-size: 101px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: -0.02em;
  color: transparent;
  -webkit-text-stroke: 0.01em var(--color-white);
  paint-order: stroke;
  opacity: 0.5;

  @media (width < 768px) {
    font-size: 60px;
  }
}
