@charset "utf-8";

.p-fv {
  padding-top: 110px;
  padding-bottom: 100px;
  overflow: hidden;
  position: relative;

  @media (width < 768px) {
    padding-top: 72px;
    padding-bottom: 80px;
  }

  .l-inner {
    max-width: none;
    padding-right: clamp(20px, calc(65vw / 13.66), 65px);
    padding-left: clamp(45px, calc(144vw / 13.66), 144px);
    position: relative;

    @media (width < 768px) {
      padding-right: 20px;
      padding-left: 30px;
    }
  }
}

.p-fv__bg {
  position: absolute;
  top: -8px;
  left: 0;
  width: 100%;

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

  p {
    font-family: var(--font-noto-sans);
    color: rgba(241, 198, 45, 0.5);
    font-size: clamp(140px, calc(224vw / 13.66), 300px);
    line-height: 0.95;
    letter-spacing: 0.03em;
    white-space: nowrap;
    position: relative;
    left: -0.1em;

    @media (width < 768px) {
      line-height: 1;
      font-size: 124px;
    }
  }
}

.gjs-dashed *[data-highlightable] .p-fv__bg p {
  font-size: 60px;
  line-height: 1;
}

.p-fv__img-inner {
  width: 100%;
  aspect-ratio: 1158/356;
  position: relative;

  @media (width < 768px) {
    aspect-ratio: auto;
    height: 250px;
  }

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

.p-fv__img-inner::before {
  position: absolute;
  content: '';
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: #000;
  opacity: 0.2;
  pointer-events: none;
}

.p-fv__heading {
  position: absolute;
  z-index: 2;
  top: 33%;
  left: -76px;
  left: clamp(-76px, calc(-76vw / 13.66), -20px);
  background: #eed530;
  padding: 16px 20px;

  @media (width < 768px) {
    left: -20px;
  }
}

.p-fv__breadcrumb {
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 30px;

  div {
    position: relative;
  }

  div:not(:first-of-type)::before {
    content: '';
    position: absolute;
    top: 0.4em;
    left: -20px;
    width: 10px;
    height: 8px;
    background: url('https://tkk4649.jp/system_panel/uploads/images/breadcrumb-arrow.svg') no-repeat center center / contain;
  }

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

  a:hover {
    opacity: 0.7;
  }
}
