/**************************************************************
  Front Visual
**************************************************************/
.p-front-visual {
    position: relative;
    height: 80.0vh;
    min-height: 600px;
    max-height: 1000px;
    overflow: hidden;
    background-color: var(--color-surface-light);
}

.p-front-visual__inner {
    position: relative;
    width: min(100.0%, var(--content-width));
    height: 100.0%;
    margin-inline: auto;
    padding-inline: var(--inline-gutter);
    z-index: 2.0;
}

.p-front-visual__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100.0%;
    max-width: 800px;
}

.p-front-visual__title {
    color: var(--color-text-main);
    line-height: 1.4;
    text-shadow: 0.0 0.0 20px rgba(255, 255, 255, 0.80);
}

.p-front-visual__title-sub {
    display: block;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 16px;
    color: var(--color-main);
}

.p-front-visual__title-main {
    display: block;
    font-size: clamp(32px, 5.0vw, 56px);
    font-weight: 700;
    letter-spacing: 0.05em;
}

.p-front-visual__action {
    margin-top: 48px;
}

.p-front-visual__action .c-button {
    min-width: 240px;
    padding-block: 1.2em;
    font-size: 18px;
    box-shadow: 0.0 10px 30px rgba(255, 147, 72, 0.30);
}

.p-front-visual__image {
    position: absolute;
    inset: 0.0;
    z-index: 1.0;
}

.p-front-visual__image img {
    width: 100.0%;
    height: 100.0%;
    object-fit: cover;
    object-position: center;
    filter: brightness(1.05);
}

.p-front-visual__image::after {
    content: "";
    position: absolute;
    inset: 0.0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.80) 0.0%, rgba(255, 255, 255, 0.0) 60.0%);
}

@media screen and (max-width: 767px) {
    .p-front-visual {
        height: 70.0vh;
        min-height: 500px;
    }

    .p-front-visual__title-sub {
        font-size: 18px;
    }

    .p-front-visual__image::after {
        background: linear-gradient(0.0deg, rgba(255, 255, 255, 0.80) 0.0%, rgba(255, 255, 255, 0.20) 100.0%);
    }
}