@charset "utf-8";

.p-fv {
  width: 100%;
  aspect-ratio: 1366/638;
  max-height: 638px;
  position: relative;

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

.p-fv::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  z-index: 2;
  background: #636363;
  opacity: 0.3;
  pointer-events: none;
}

.p-fv__bg {
  position: absolute;
  width: 100%;
  height: 100%;

  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.p-fv__main {
  width: 100%;
  top: 42%;
  height: 40%;
  position: absolute;
  z-index: 2;
  color: var(--color-white);

  @media (width < 768px) {
    top: 30%;
    height: auto;
  }
}

.p-fv__breadcrumb {
  position: absolute;
  width: 100%;
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 32px;
  top: 88px;

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

  div {
    position: relative;
  }

  div:not(:first-of-type)::after {
    content: '';
    position: absolute;
    width: 7px;
    aspect-ratio: 1;
    background: url('https://plusnauts.co.jp/system_panel/uploads/images/breadcrumb-arrow.svg') no-repeat center center / contain;
    top: 35%;
    left: -20px;
  }

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

  a:hover {
    opacity: 0.7;
  }
}

.p-fv__inner {
  height: 100%;
  margin: 0 auto;
  max-width: 1304px;
  padding: 0 20px;
  display: flex;
  align-items: start;
  gap: 20px;
  justify-content: space-between;

  @media (width < 768px) {
    flex-direction: column;
    align-items: start;
    gap: 40px;
  }

  .c-heading {
    margin-left: 30px;

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

  .c-heading__en,
  .c-heading__ja {
    color: var(--color-white);
  }
}

.p-fv__text {
  max-width: 467px;
  align-self: end;
  font-weight: 700;
  font-size: 16px;
  line-height: calc(32 / 16);
}
