@charset "utf-8";

.p-fv {
  margin-top: 97px;
  position: relative;
  width: 100%;
  height: 418px;

  @media (width < 768px) {
    margin-top: 70px;
    height: 200px;
  }

  .l-inner {
    max-width: 1310px;
  }
}

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

.p-fv__heading {
  min-width: 330px;
  padding: 16px 80px 0 50px;
  background: var(--color-white);
  position: absolute;
  bottom: -42px;

  @media (width < 768px) {
    min-width: fit-content;
    bottom: -20px;
    padding: 0 32px;
  }
}

.p-breadcrumb {
  margin-top: 18px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 44px;

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

  div {
    position: relative;
  }

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

  p {
    color: #7b7b7b;
    font-weight: 300;
    font-size: 13px;
    letter-spacing: 0.06em;
  }

  a:hover {
    opacity: 0.7;
  }
}
