.l-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 20;
    width: 100%;
    color: #ffffff;
    font-family: var(--font-family-base);
}

.p-header {
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.p-header__logo {
    margin-left: 25px;
}

.p-header__logo-link:hover .p-header__logo-img {
    opacity: 0.7;
}

.p-header__logo-img {
    max-height: 80px;
    transition: opacity 0.1s ease;
}

.p-header__home {
    width: 160px;
    height: 100px;
    background: #000000;
}

.p-header__home-link {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.p-header__home-img{
    max-width: 32px;
    max-height: 32px;
}

.p-header__home-txt {
    font-size: 15px;
    letter-spacing: .1em;
    white-space: nowrap;
}


@media screen and (max-width: 1024px) {
    .p-header__logo {
        margin-left: 15px;
    }

    .p-header__logo-img {
        max-height: 60px;
    }

    .p-header__home {
        width: 70px;
        height: 70px;
    }

    .p-header__home-img{
        max-width: 22px;
        max-height: 22px;
    }

    .p-header__home-txt {
        font-size: 10px;
    }
}
