@charset "utf-8";
/* MV（ページごとに変更）
========================== */
.c-submv::after{
    background-image: url(../img/products/mv.jpg);
}

.p-anchorLink {
    padding-top: 10rem;
}
.p-anchorLink ul {
    width: 95%;
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}
.p-anchorLink li {
    width: 25%;
    text-align: center;
    border-left: 1px solid #5d696d;
}
.p-anchorLink li:last-child {
    border-right: 1px solid #5d696d;
}
.p-anchorLink li a {
    width: 100%;
    height: 100%;
    padding: 15px 1% 35px;
    position: relative;
}
.p-anchorLink li a::after {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background-color: #5d696d;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 25px;
    transition: all 0.35s ease;

}
.p-anchorLink li a:hover::after {
    transform: translate(-50%, 8px);
}


.products__ttl{
    font-size: 3rem;
    line-height: 1;
    display: flex;
    align-items: center;
    gap: 5rem;
    margin-bottom: 6rem;
}
.products__ttl::after{
    content: '';
    flex: 0 0 10rem;
    height: 1px;
    background: #a0b2c7;
}

.brands_list li {
    padding: 10rem 0;
    border-bottom: 1px solid #5d696d;
}
.brands_list li:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.brands_flex {
    display: flex;
    justify-content: space-between;
}
.brands_list li:nth-of-type(even) .brands_flex {
    flex-direction: row-reverse;
}
.brands_flex figure {
    width: 45%;
    align-content: center;
}
.brands_txt {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 2rem;
}


@media only screen and (max-width: 1024px) {
    .p-anchorLink {
        padding-top: 8rem;
    }
    .p-anchorLink ul {
        flex-wrap: wrap;
        row-gap: 2.6rem;
        justify-content: start;
    }
    .p-anchorLink li {
        width: 33.3%;
    }
    .p-anchorLink li:nth-last-child(3) {
        border-right: 1px solid #5d696d;
    }
    .p-anchorLink li a {
        padding: 8px 1% 20px;
    }
    .p-anchorLink li a::after {
        bottom: 10px;
    }

    .products__ttl{
        font-size: 2.6rem;
        gap: 2.5rem;
        margin-bottom: 4rem;
    }

    .brands_list li {
        padding: 6rem 0;
    }

    .brands_flex {
        flex-direction: column;
    }
    .brands_list li:nth-of-type(even) .brands_flex {
        flex-direction: column;
    }
    .brands_flex figure {
        width: 100%;
        margin-bottom: 3rem;
    }
    .brands_txt {
        width: 100%;
        row-gap: 4rem;
    }
    .btn-center {
        text-align: center;
    }
}