@charset "utf-8";

.header {
    background-color: #FFF;
}

.p-fv {
    position: relative;
    margin-top: var(--header-height);
}

.p-fv::before {
    content: "";
    background: url(/system_panel/uploads/images/20260414181249268225.png) no-repeat center/contain;
    max-width: 536px;
    width: 50%;
    height: 484px;
    position: absolute;
    bottom: 45px;
    left: -85px;
    opacity: 0.15;
    transform: rotate(32deg);
    pointer-events: none;
}

.p-fv .inner {
    padding: 135px 0 80px;
    display: flex;
    flex-direction: column;
    gap: 36px;
    align-items: flex-start;
}

.p-fv .breadlist {
    display: flex;
    align-items: center;
    gap: 16px;
}

.p-fv .breadlist p {
    font-family: var(--font-main);
    font-weight: 400;
    font-size: clamp(0.625rem, 0.534rem + 0.39vw, 1rem);
    color: #05a6bc;
}

.p-fv .page-title {
    font-family: var(--font-main);
    font-weight: 600;
    font-size: clamp(1.875rem, 1.723rem + 0.65vw, 2.5rem);
    color: #000;
}


@media (max-width: 767px) {
    .p-fv .inner {
        padding: 37px 0 70px;
        gap: 0;
    }

    .p-fv::before {
        max-width: 233px;
        width: 100%;
        height: 210px;
        bottom: 36px;
        left: -46px;
    }
}