@charset "utf-8";

.p-fv {
  padding: 85px 0 130px;
  background: linear-gradient(180deg, #fc8e3c 0%, #ffb437 22%, #fdedd3 50%, #81d2c5 100%);
  overflow: hidden;

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

  .l-inner {
    max-width: 1200px;
    margin: 45px auto 0;
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 20px;

    @media (width < 768px) {
      margin-top: 20px;
      flex-direction: column;
    }
  }
}

.p-fv__breadcrumb {
  padding: 0 25px;
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 30px;

  div {
    position: relative;
  }

  div:not(:first-of-type)::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-40%);
    left: -18px;
    width: 7px;
    height: 7px;
    background: url("https://mountfield.co.jp/system_panel/uploads/images/breadcrumb-arrow.svg") no-repeat center center / contain;
  }

  p {
    color: #fff;
    font-size: 12px;
    line-height: normal;
    letter-spacing: 0.03em;
  }

  a:hover {
    opacity: 0.7;
  }
}

.p-fv__heading {
  margin-top: 34px;
  width: fit-content;

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

  .c-heading__en {
    font-family: var(--font-zen-gothic);
    font-weight: 500;
    line-height: 1;
    margin-top: 0;
    padding-bottom: 0.2em;
  }

  .c-heading__ja {
    opacity: 1;
  }
}

.p-fv__img {
  max-width: 430px;
  aspect-ratio: 430/258;
  position: relative;

  @media (width < 768px) {
    align-self: flex-end;
    width: 100%;
    max-width: 430px;
  }

  img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    object-fit: cover;
  }
}

.p-fv__img::before {
  content: "";
  position: absolute;
  bottom: -14%;
  right: -19%;
  width: 75%;
  aspect-ratio: 323/252;
  background: url("https://mountfield.co.jp/system_panel/uploads/images/top-value-bg.png") no-repeat center center / contain;
}

.gjs-dashed *[data-highlightable] {
  .p-fv__img {
    z-index: 1;
  }

  .p-fv__img::before {
    z-index: -1;
  }
}
