.c-lower-visual-hero {
  padding-top: var(--header-height);
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
  background: var(--color-white);
  color: var(--color-text);
}

.c-lower-visual-hero .l-container {
  position: relative;
  z-index: 1;
}

.c-lower-visual-hero__media {
  height: 400px;
  position: absolute;
  left: calc(50% - (var(--container-width) / 2) + var(--container-padding) + 480px);
  right: 0;
  top: calc(var(--header-height) + 53px);
  z-index: 0;
}

.c-lower-visual-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.c-lower-visual-hero__inner {
  height: calc(400px + 53px);
  padding-top: 53px;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.c-lower-visual-hero .c-breadcrumb--hero {
  top: 16px;
}

.c-lower-visual-hero__title {
  font-family: var(--font-family-display-en);
  font-size: var(--font-size-lower-hero-title);
  line-height: var(--line-height-tight);
  font-weight: var(--font-weight-light);
  letter-spacing: 0.12em;
}

.c-lower-visual-hero__subtitle {
  margin-top: 16px;
  font-size: var(--font-size-base);
  line-height: var(--line-height-tight);
  font-weight: var(--font-weight-medium);
  letter-spacing: 0.1em;
}

@media (min-width: 768px) and (max-width: 1100px) {
  .c-lower-visual-hero {
    padding-bottom: 48px;
  }

  .c-lower-visual-hero__inner {
    height: 360px;
    justify-content: center;
  }

  .c-lower-visual-hero__media {
    left: 52%;
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .c-lower-visual-hero__title {
    max-width: 340px;
  }
}

@media (min-width: 768px) and (max-width: 900px) {
  .c-lower-visual-hero__inner {
    height: 330px;
  }

  .c-lower-visual-hero__media {
    left: 50%;
    top: calc(var(--header-height) + 102px);
  }

  .c-lower-visual-hero__title {
    max-width: 300px;
    font-size: 36px;
  }
}

@media (max-width: 767px) {
  .c-lower-visual-hero {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
    padding-bottom: 0;
  }

  .c-lower-visual-hero .l-container {
    order: 1;
  }

  .c-lower-visual-hero__media {
    margin-left: var(--container-padding);
    width: calc(100% - var(--container-padding));
    height: auto;
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    order: 2;
    margin-bottom: 24px;
  }

  .c-lower-visual-hero__inner {
    height: auto;
    padding-top: 80px;
  }

}
