@charset "UTF-8";
/* Index CSS Document */

.p_category {
    width: 100%;
    height: 65px;
    padding: 0 55px;
    border-top: 1px solid #D0D0D0;
    border-bottom: 1px solid #D0D0D0;
}
.p_category li {
    position: relative;
}
.p_category a {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1;
    color: #26292B;
}
.p_category .active::after {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 2px;
    background-color: #3B3230;
    left: 50%;
    transform: translate3d(-50%, 0, 0);
    bottom: -20px;
}


@media screen and (max-width: 375px) {
    .p_category {
        height: auto;
        padding: 0;
        border-bottom: none;
    }
    .p_category li {
        position: relative;
        width: 50%;
        border-bottom: 1px solid #D0D0D0;
    }
    .p_category li:nth-child(odd)::after {
        content: "";
        position: absolute;
        display: block;
        width: 1px;
        height: 25px;
        background-color: #D0D0D0;
        right: 0;
        top: 50%;
        transform: translate3d(0, -50%, 0);
    }
    .p_category a {
        display: block;
        font-size: 14px;
        text-align: center;
        padding: 18px 0;
    }
}
